├── .gitattributes ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE.txt ├── Lbfgsb.3.0 ├── License.txt ├── blas.f ├── lbfgsb.f ├── linpack.f ├── setulb_wrapper.f └── timer.f ├── README.md ├── bin └── .gitkeep ├── examples ├── CMakeLists.txt ├── full_example.cpp └── simple_example.cpp ├── include └── lbfgsb_cpp │ ├── l_bfgs_b.h │ ├── problem.h │ └── utils.h └── tests ├── CMakeLists.txt └── src ├── CMakeLists.txt ├── problem_fixture.h ├── random_vector_generator.h ├── test_functions.h ├── test_l_bfgs_b_optimization.cpp ├── test_numerical_gradient.cpp ├── test_problem.cpp └── test_utils.h /.gitattributes: -------------------------------------------------------------------------------- 1 | Lbfgsb.3.0/* linguist-vendored 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantino-garcia/lbfgsb_cpp_wrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantino-garcia/lbfgsb_cpp_wrapper/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantino-garcia/lbfgsb_cpp_wrapper/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantino-garcia/lbfgsb_cpp_wrapper/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Lbfgsb.3.0/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantino-garcia/lbfgsb_cpp_wrapper/HEAD/Lbfgsb.3.0/License.txt -------------------------------------------------------------------------------- /Lbfgsb.3.0/blas.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantino-garcia/lbfgsb_cpp_wrapper/HEAD/Lbfgsb.3.0/blas.f -------------------------------------------------------------------------------- /Lbfgsb.3.0/lbfgsb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantino-garcia/lbfgsb_cpp_wrapper/HEAD/Lbfgsb.3.0/lbfgsb.f -------------------------------------------------------------------------------- /Lbfgsb.3.0/linpack.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantino-garcia/lbfgsb_cpp_wrapper/HEAD/Lbfgsb.3.0/linpack.f -------------------------------------------------------------------------------- /Lbfgsb.3.0/setulb_wrapper.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantino-garcia/lbfgsb_cpp_wrapper/HEAD/Lbfgsb.3.0/setulb_wrapper.f -------------------------------------------------------------------------------- /Lbfgsb.3.0/timer.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantino-garcia/lbfgsb_cpp_wrapper/HEAD/Lbfgsb.3.0/timer.f -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantino-garcia/lbfgsb_cpp_wrapper/HEAD/README.md -------------------------------------------------------------------------------- /bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantino-garcia/lbfgsb_cpp_wrapper/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/full_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantino-garcia/lbfgsb_cpp_wrapper/HEAD/examples/full_example.cpp -------------------------------------------------------------------------------- /examples/simple_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantino-garcia/lbfgsb_cpp_wrapper/HEAD/examples/simple_example.cpp -------------------------------------------------------------------------------- /include/lbfgsb_cpp/l_bfgs_b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantino-garcia/lbfgsb_cpp_wrapper/HEAD/include/lbfgsb_cpp/l_bfgs_b.h -------------------------------------------------------------------------------- /include/lbfgsb_cpp/problem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantino-garcia/lbfgsb_cpp_wrapper/HEAD/include/lbfgsb_cpp/problem.h -------------------------------------------------------------------------------- /include/lbfgsb_cpp/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantino-garcia/lbfgsb_cpp_wrapper/HEAD/include/lbfgsb_cpp/utils.h -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantino-garcia/lbfgsb_cpp_wrapper/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantino-garcia/lbfgsb_cpp_wrapper/HEAD/tests/src/CMakeLists.txt -------------------------------------------------------------------------------- /tests/src/problem_fixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantino-garcia/lbfgsb_cpp_wrapper/HEAD/tests/src/problem_fixture.h -------------------------------------------------------------------------------- /tests/src/random_vector_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantino-garcia/lbfgsb_cpp_wrapper/HEAD/tests/src/random_vector_generator.h -------------------------------------------------------------------------------- /tests/src/test_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantino-garcia/lbfgsb_cpp_wrapper/HEAD/tests/src/test_functions.h -------------------------------------------------------------------------------- /tests/src/test_l_bfgs_b_optimization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantino-garcia/lbfgsb_cpp_wrapper/HEAD/tests/src/test_l_bfgs_b_optimization.cpp -------------------------------------------------------------------------------- /tests/src/test_numerical_gradient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantino-garcia/lbfgsb_cpp_wrapper/HEAD/tests/src/test_numerical_gradient.cpp -------------------------------------------------------------------------------- /tests/src/test_problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantino-garcia/lbfgsb_cpp_wrapper/HEAD/tests/src/test_problem.cpp -------------------------------------------------------------------------------- /tests/src/test_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantino-garcia/lbfgsb_cpp_wrapper/HEAD/tests/src/test_utils.h --------------------------------------------------------------------------------