/* header file for the nlme package Copyright 1999 Saikat DebRoy Copyright 2007-2016 The R Core Team This file is part of the nlme package for R and related languages and is made available under the terms of the GNU General Public License, version 2, or at your option, any later version, incorporated herein by reference. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, a copy is available at http://www.r-project.org/Licenses/ */ #ifndef NLME_NLOPTIMIZER_H #define NLME_NLOPTIMIZER_H #include "base.h" #include "Rinternals.h" extern int evaluate(double *, int, SEXP model, double **); extern void fit_gnls(double *, int *, double *, double *, int *, double *, double *, int *, int *, SEXP model); #endif /* NLME_NLOPTIMIZER_H */