├── .codecov.yml ├── .github └── workflows │ └── build.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE-Apache ├── LICENSE-MIT ├── README.md ├── config ├── CMakeLists.txt ├── cmake │ └── Findtest-drive.cmake ├── install-mod.py ├── meson.build ├── template.cmake └── template.pc ├── fpm.toml ├── include └── nlopt-wrap.F90 ├── meson.build ├── meson_options.txt ├── src ├── CMakeLists.txt ├── meson.build ├── nlopt_callback.f90 ├── nlopt_enum.F90 ├── nlopt_interface.F90 └── nlopt_wrap.f90 ├── subprojects ├── .gitignore └── test-drive.wrap └── test ├── CMakeLists.txt ├── main.f90 ├── meson.build ├── test_enum.f90 ├── test_opt.f90 └── test_version.f90 /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimme-lab/nlopt-f/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimme-lab/nlopt-f/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimme-lab/nlopt-f/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimme-lab/nlopt-f/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE-Apache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimme-lab/nlopt-f/HEAD/LICENSE-Apache -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimme-lab/nlopt-f/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimme-lab/nlopt-f/HEAD/README.md -------------------------------------------------------------------------------- /config/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimme-lab/nlopt-f/HEAD/config/CMakeLists.txt -------------------------------------------------------------------------------- /config/cmake/Findtest-drive.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimme-lab/nlopt-f/HEAD/config/cmake/Findtest-drive.cmake -------------------------------------------------------------------------------- /config/install-mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimme-lab/nlopt-f/HEAD/config/install-mod.py -------------------------------------------------------------------------------- /config/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimme-lab/nlopt-f/HEAD/config/meson.build -------------------------------------------------------------------------------- /config/template.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimme-lab/nlopt-f/HEAD/config/template.cmake -------------------------------------------------------------------------------- /config/template.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimme-lab/nlopt-f/HEAD/config/template.pc -------------------------------------------------------------------------------- /fpm.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimme-lab/nlopt-f/HEAD/fpm.toml -------------------------------------------------------------------------------- /include/nlopt-wrap.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimme-lab/nlopt-f/HEAD/include/nlopt-wrap.F90 -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimme-lab/nlopt-f/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimme-lab/nlopt-f/HEAD/meson_options.txt -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimme-lab/nlopt-f/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimme-lab/nlopt-f/HEAD/src/meson.build -------------------------------------------------------------------------------- /src/nlopt_callback.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimme-lab/nlopt-f/HEAD/src/nlopt_callback.f90 -------------------------------------------------------------------------------- /src/nlopt_enum.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimme-lab/nlopt-f/HEAD/src/nlopt_enum.F90 -------------------------------------------------------------------------------- /src/nlopt_interface.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimme-lab/nlopt-f/HEAD/src/nlopt_interface.F90 -------------------------------------------------------------------------------- /src/nlopt_wrap.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimme-lab/nlopt-f/HEAD/src/nlopt_wrap.f90 -------------------------------------------------------------------------------- /subprojects/.gitignore: -------------------------------------------------------------------------------- 1 | /*/ 2 | -------------------------------------------------------------------------------- /subprojects/test-drive.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimme-lab/nlopt-f/HEAD/subprojects/test-drive.wrap -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimme-lab/nlopt-f/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/main.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimme-lab/nlopt-f/HEAD/test/main.f90 -------------------------------------------------------------------------------- /test/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimme-lab/nlopt-f/HEAD/test/meson.build -------------------------------------------------------------------------------- /test/test_enum.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimme-lab/nlopt-f/HEAD/test/test_enum.f90 -------------------------------------------------------------------------------- /test/test_opt.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimme-lab/nlopt-f/HEAD/test/test_opt.f90 -------------------------------------------------------------------------------- /test/test_version.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimme-lab/nlopt-f/HEAD/test/test_version.f90 --------------------------------------------------------------------------------