├── .Rbuildignore ├── .gitattributes ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check-system.yaml │ ├── R-CMD-check.yaml │ ├── check-rtools-versions.yaml │ ├── pkgdown.yaml │ ├── rhub.yaml │ ├── system-nlopt.yaml │ └── test-coverage.yaml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── auglag.R ├── ccsaq.R ├── check.derivatives.R ├── cobyla.R ├── direct.R ├── finite.diff.R ├── global.R ├── gradients.R ├── is.nloptr.R ├── lbfgs.R ├── mlsl.R ├── mma.R ├── nloptions.R ├── nloptr-package.R ├── nloptr.R ├── nloptr.add.default.options.R ├── nloptr.get.default.options.R ├── nloptr.print.options.R ├── nm.R ├── print.nloptr.R ├── slsqp.R ├── tnewton.R ├── varmetric.R └── zzz.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── air.toml ├── cleanup ├── cleanup.win ├── codecov.yml ├── configure ├── configure.ac ├── cran-comments.md ├── inst ├── CITATION ├── include │ └── nloptrAPI.h └── tinytest │ ├── test-Rosenbrock-banana.R │ ├── test-check.derivatives.R │ ├── test-derivative-checker.R │ ├── test-example.R │ ├── test-gradients.R │ ├── test-hs023.R │ ├── test-hs071.R │ ├── test-is.nloptr.R │ ├── test-nloptions.R │ ├── test-nloptr.R │ ├── test-nloptr.add.default.options.R │ ├── test-nloptr.print.options.R │ ├── test-options-maxtime.R │ ├── test-options-xweights.R │ ├── test-parameters.R │ ├── test-print.nloptr.R │ ├── test-simple.R │ ├── test-systemofeq.R │ ├── test-wrapper-auglag.R │ ├── test-wrapper-ccsaq.R │ ├── test-wrapper-cobyla.R │ ├── test-wrapper-direct.R │ ├── test-wrapper-global.R │ ├── test-wrapper-lbgfs.R │ ├── test-wrapper-mlsl.R │ ├── test-wrapper-mma.R │ ├── test-wrapper-nm.R │ ├── test-wrapper-slsqp.R │ ├── test-wrapper-tnewton.R │ └── test-wrapper-varmetric.R ├── man ├── auglag.Rd ├── bobyqa.Rd ├── ccsaq.Rd ├── check.derivatives.Rd ├── cobyla.Rd ├── crs2lm.Rd ├── direct.Rd ├── figures │ └── logo.png ├── is.nloptr.Rd ├── isres.Rd ├── lbfgs.Rd ├── mlsl.Rd ├── mma.Rd ├── neldermead.Rd ├── newuoa.Rd ├── nl.grad.Rd ├── nl.opts.Rd ├── nloptr-package.Rd ├── nloptr.Rd ├── nloptr.get.default.options.Rd ├── nloptr.print.options.Rd ├── print.nloptr.Rd ├── sbplx.Rd ├── slsqp.Rd ├── stogo.Rd ├── tnewton.Rd └── varmetric.Rd ├── nloptr.Rproj ├── revdep ├── .gitignore ├── README.md ├── cran.md ├── email.yml ├── failures.md ├── problems.md └── run_revdepcheck.R ├── src ├── Makevars.in ├── Makevars.ucrt ├── Makevars.win ├── dummy.cpp ├── init_nloptr.c ├── nlopt-src.tar.gz ├── nloptr.c ├── nloptr.h ├── parsers.c ├── parsers.h └── scripts │ ├── nlopt_cleanup.sh │ ├── nlopt_download.sh │ └── r_config.sh ├── tests └── tinytest.R ├── tools ├── cmake_call.sh ├── cmake_config.sh └── winlibs.R └── vignettes ├── .gitignore ├── nloptr.Rmd └── reflist.bib /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check-system.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/.github/workflows/R-CMD-check-system.yaml -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/check-rtools-versions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/.github/workflows/check-rtools-versions.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/rhub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/.github/workflows/rhub.yaml -------------------------------------------------------------------------------- /.github/workflows/system-nlopt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/.github/workflows/system-nlopt.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/auglag.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/R/auglag.R -------------------------------------------------------------------------------- /R/ccsaq.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/R/ccsaq.R -------------------------------------------------------------------------------- /R/check.derivatives.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/R/check.derivatives.R -------------------------------------------------------------------------------- /R/cobyla.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/R/cobyla.R -------------------------------------------------------------------------------- /R/direct.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/R/direct.R -------------------------------------------------------------------------------- /R/finite.diff.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/R/finite.diff.R -------------------------------------------------------------------------------- /R/global.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/R/global.R -------------------------------------------------------------------------------- /R/gradients.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/R/gradients.R -------------------------------------------------------------------------------- /R/is.nloptr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/R/is.nloptr.R -------------------------------------------------------------------------------- /R/lbfgs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/R/lbfgs.R -------------------------------------------------------------------------------- /R/mlsl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/R/mlsl.R -------------------------------------------------------------------------------- /R/mma.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/R/mma.R -------------------------------------------------------------------------------- /R/nloptions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/R/nloptions.R -------------------------------------------------------------------------------- /R/nloptr-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/R/nloptr-package.R -------------------------------------------------------------------------------- /R/nloptr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/R/nloptr.R -------------------------------------------------------------------------------- /R/nloptr.add.default.options.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/R/nloptr.add.default.options.R -------------------------------------------------------------------------------- /R/nloptr.get.default.options.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/R/nloptr.get.default.options.R -------------------------------------------------------------------------------- /R/nloptr.print.options.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/R/nloptr.print.options.R -------------------------------------------------------------------------------- /R/nm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/R/nm.R -------------------------------------------------------------------------------- /R/print.nloptr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/R/print.nloptr.R -------------------------------------------------------------------------------- /R/slsqp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/R/slsqp.R -------------------------------------------------------------------------------- /R/tnewton.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/R/tnewton.R -------------------------------------------------------------------------------- /R/varmetric.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/R/varmetric.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /air.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/cleanup -------------------------------------------------------------------------------- /cleanup.win: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ./cleanup -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/codecov.yml -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/configure.ac -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/cran-comments.md -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/include/nloptrAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/inst/include/nloptrAPI.h -------------------------------------------------------------------------------- /inst/tinytest/test-Rosenbrock-banana.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/inst/tinytest/test-Rosenbrock-banana.R -------------------------------------------------------------------------------- /inst/tinytest/test-check.derivatives.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/inst/tinytest/test-check.derivatives.R -------------------------------------------------------------------------------- /inst/tinytest/test-derivative-checker.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/inst/tinytest/test-derivative-checker.R -------------------------------------------------------------------------------- /inst/tinytest/test-example.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/inst/tinytest/test-example.R -------------------------------------------------------------------------------- /inst/tinytest/test-gradients.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/inst/tinytest/test-gradients.R -------------------------------------------------------------------------------- /inst/tinytest/test-hs023.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/inst/tinytest/test-hs023.R -------------------------------------------------------------------------------- /inst/tinytest/test-hs071.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/inst/tinytest/test-hs071.R -------------------------------------------------------------------------------- /inst/tinytest/test-is.nloptr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/inst/tinytest/test-is.nloptr.R -------------------------------------------------------------------------------- /inst/tinytest/test-nloptions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/inst/tinytest/test-nloptions.R -------------------------------------------------------------------------------- /inst/tinytest/test-nloptr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/inst/tinytest/test-nloptr.R -------------------------------------------------------------------------------- /inst/tinytest/test-nloptr.add.default.options.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/inst/tinytest/test-nloptr.add.default.options.R -------------------------------------------------------------------------------- /inst/tinytest/test-nloptr.print.options.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/inst/tinytest/test-nloptr.print.options.R -------------------------------------------------------------------------------- /inst/tinytest/test-options-maxtime.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/inst/tinytest/test-options-maxtime.R -------------------------------------------------------------------------------- /inst/tinytest/test-options-xweights.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/inst/tinytest/test-options-xweights.R -------------------------------------------------------------------------------- /inst/tinytest/test-parameters.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/inst/tinytest/test-parameters.R -------------------------------------------------------------------------------- /inst/tinytest/test-print.nloptr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/inst/tinytest/test-print.nloptr.R -------------------------------------------------------------------------------- /inst/tinytest/test-simple.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/inst/tinytest/test-simple.R -------------------------------------------------------------------------------- /inst/tinytest/test-systemofeq.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/inst/tinytest/test-systemofeq.R -------------------------------------------------------------------------------- /inst/tinytest/test-wrapper-auglag.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/inst/tinytest/test-wrapper-auglag.R -------------------------------------------------------------------------------- /inst/tinytest/test-wrapper-ccsaq.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/inst/tinytest/test-wrapper-ccsaq.R -------------------------------------------------------------------------------- /inst/tinytest/test-wrapper-cobyla.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/inst/tinytest/test-wrapper-cobyla.R -------------------------------------------------------------------------------- /inst/tinytest/test-wrapper-direct.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/inst/tinytest/test-wrapper-direct.R -------------------------------------------------------------------------------- /inst/tinytest/test-wrapper-global.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/inst/tinytest/test-wrapper-global.R -------------------------------------------------------------------------------- /inst/tinytest/test-wrapper-lbgfs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/inst/tinytest/test-wrapper-lbgfs.R -------------------------------------------------------------------------------- /inst/tinytest/test-wrapper-mlsl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/inst/tinytest/test-wrapper-mlsl.R -------------------------------------------------------------------------------- /inst/tinytest/test-wrapper-mma.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/inst/tinytest/test-wrapper-mma.R -------------------------------------------------------------------------------- /inst/tinytest/test-wrapper-nm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/inst/tinytest/test-wrapper-nm.R -------------------------------------------------------------------------------- /inst/tinytest/test-wrapper-slsqp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/inst/tinytest/test-wrapper-slsqp.R -------------------------------------------------------------------------------- /inst/tinytest/test-wrapper-tnewton.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/inst/tinytest/test-wrapper-tnewton.R -------------------------------------------------------------------------------- /inst/tinytest/test-wrapper-varmetric.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/inst/tinytest/test-wrapper-varmetric.R -------------------------------------------------------------------------------- /man/auglag.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/man/auglag.Rd -------------------------------------------------------------------------------- /man/bobyqa.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/man/bobyqa.Rd -------------------------------------------------------------------------------- /man/ccsaq.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/man/ccsaq.Rd -------------------------------------------------------------------------------- /man/check.derivatives.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/man/check.derivatives.Rd -------------------------------------------------------------------------------- /man/cobyla.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/man/cobyla.Rd -------------------------------------------------------------------------------- /man/crs2lm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/man/crs2lm.Rd -------------------------------------------------------------------------------- /man/direct.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/man/direct.Rd -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/is.nloptr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/man/is.nloptr.Rd -------------------------------------------------------------------------------- /man/isres.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/man/isres.Rd -------------------------------------------------------------------------------- /man/lbfgs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/man/lbfgs.Rd -------------------------------------------------------------------------------- /man/mlsl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/man/mlsl.Rd -------------------------------------------------------------------------------- /man/mma.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/man/mma.Rd -------------------------------------------------------------------------------- /man/neldermead.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/man/neldermead.Rd -------------------------------------------------------------------------------- /man/newuoa.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/man/newuoa.Rd -------------------------------------------------------------------------------- /man/nl.grad.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/man/nl.grad.Rd -------------------------------------------------------------------------------- /man/nl.opts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/man/nl.opts.Rd -------------------------------------------------------------------------------- /man/nloptr-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/man/nloptr-package.Rd -------------------------------------------------------------------------------- /man/nloptr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/man/nloptr.Rd -------------------------------------------------------------------------------- /man/nloptr.get.default.options.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/man/nloptr.get.default.options.Rd -------------------------------------------------------------------------------- /man/nloptr.print.options.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/man/nloptr.print.options.Rd -------------------------------------------------------------------------------- /man/print.nloptr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/man/print.nloptr.Rd -------------------------------------------------------------------------------- /man/sbplx.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/man/sbplx.Rd -------------------------------------------------------------------------------- /man/slsqp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/man/slsqp.Rd -------------------------------------------------------------------------------- /man/stogo.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/man/stogo.Rd -------------------------------------------------------------------------------- /man/tnewton.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/man/tnewton.Rd -------------------------------------------------------------------------------- /man/varmetric.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/man/varmetric.Rd -------------------------------------------------------------------------------- /nloptr.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/nloptr.Rproj -------------------------------------------------------------------------------- /revdep/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/revdep/.gitignore -------------------------------------------------------------------------------- /revdep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/revdep/README.md -------------------------------------------------------------------------------- /revdep/cran.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/revdep/cran.md -------------------------------------------------------------------------------- /revdep/email.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/revdep/email.yml -------------------------------------------------------------------------------- /revdep/failures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/revdep/failures.md -------------------------------------------------------------------------------- /revdep/problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/revdep/problems.md -------------------------------------------------------------------------------- /revdep/run_revdepcheck.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/revdep/run_revdepcheck.R -------------------------------------------------------------------------------- /src/Makevars.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/src/Makevars.in -------------------------------------------------------------------------------- /src/Makevars.ucrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/src/Makevars.ucrt -------------------------------------------------------------------------------- /src/Makevars.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/src/Makevars.win -------------------------------------------------------------------------------- /src/dummy.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/init_nloptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/src/init_nloptr.c -------------------------------------------------------------------------------- /src/nlopt-src.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/src/nlopt-src.tar.gz -------------------------------------------------------------------------------- /src/nloptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/src/nloptr.c -------------------------------------------------------------------------------- /src/nloptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/src/nloptr.h -------------------------------------------------------------------------------- /src/parsers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/src/parsers.c -------------------------------------------------------------------------------- /src/parsers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/src/parsers.h -------------------------------------------------------------------------------- /src/scripts/nlopt_cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/src/scripts/nlopt_cleanup.sh -------------------------------------------------------------------------------- /src/scripts/nlopt_download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/src/scripts/nlopt_download.sh -------------------------------------------------------------------------------- /src/scripts/r_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/src/scripts/r_config.sh -------------------------------------------------------------------------------- /tests/tinytest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/tests/tinytest.R -------------------------------------------------------------------------------- /tools/cmake_call.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/tools/cmake_call.sh -------------------------------------------------------------------------------- /tools/cmake_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/tools/cmake_config.sh -------------------------------------------------------------------------------- /tools/winlibs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/tools/winlibs.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/nloptr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/vignettes/nloptr.Rmd -------------------------------------------------------------------------------- /vignettes/reflist.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astamm/nloptr/HEAD/vignettes/reflist.bib --------------------------------------------------------------------------------