├── .gitignore ├── LICENSE ├── README.org ├── c_header ├── AUTHORS ├── COPYING ├── README.md └── nlopt.h ├── changelog.org ├── examples ├── nim.cfg ├── tutorial.c ├── tutorial.nim └── tutorial_c ├── nlopt.nimble ├── src ├── nlopt.nim └── nlopt │ └── nlopt_wrapper.nim └── tests ├── nim.cfg └── tsimple.nim /.gitignore: -------------------------------------------------------------------------------- 1 | nimcache/ 2 | *~ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vindaar/nimnlopt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vindaar/nimnlopt/HEAD/README.org -------------------------------------------------------------------------------- /c_header/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vindaar/nimnlopt/HEAD/c_header/AUTHORS -------------------------------------------------------------------------------- /c_header/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vindaar/nimnlopt/HEAD/c_header/COPYING -------------------------------------------------------------------------------- /c_header/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vindaar/nimnlopt/HEAD/c_header/README.md -------------------------------------------------------------------------------- /c_header/nlopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vindaar/nimnlopt/HEAD/c_header/nlopt.h -------------------------------------------------------------------------------- /changelog.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vindaar/nimnlopt/HEAD/changelog.org -------------------------------------------------------------------------------- /examples/nim.cfg: -------------------------------------------------------------------------------- 1 | --path:"../src/" -------------------------------------------------------------------------------- /examples/tutorial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vindaar/nimnlopt/HEAD/examples/tutorial.c -------------------------------------------------------------------------------- /examples/tutorial.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vindaar/nimnlopt/HEAD/examples/tutorial.nim -------------------------------------------------------------------------------- /examples/tutorial_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vindaar/nimnlopt/HEAD/examples/tutorial_c -------------------------------------------------------------------------------- /nlopt.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vindaar/nimnlopt/HEAD/nlopt.nimble -------------------------------------------------------------------------------- /src/nlopt.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vindaar/nimnlopt/HEAD/src/nlopt.nim -------------------------------------------------------------------------------- /src/nlopt/nlopt_wrapper.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vindaar/nimnlopt/HEAD/src/nlopt/nlopt_wrapper.nim -------------------------------------------------------------------------------- /tests/nim.cfg: -------------------------------------------------------------------------------- 1 | --path:"../src/" -------------------------------------------------------------------------------- /tests/tsimple.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vindaar/nimnlopt/HEAD/tests/tsimple.nim --------------------------------------------------------------------------------