├── .gitignore ├── INSTALL ├── LICENSE ├── Matlab ├── Makefile ├── compile_mex.m ├── driver1.m ├── example_NNLS.m ├── fminunc_wrapper.m ├── lbfgsb.m ├── lbfgsb_wrapper.c └── lbfgsb_wrapper.mexmaci64 ├── README.md ├── VERSION └── src ├── Makefile ├── driver1.c ├── driver2.c ├── driver3.c ├── lbfgsb.c ├── lbfgsb.h ├── linesearch.c ├── linpack.c ├── miniCBLAS.c ├── print.c ├── subalgorithms.c └── timer.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbeckr/L-BFGS-B-C/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbeckr/L-BFGS-B-C/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbeckr/L-BFGS-B-C/HEAD/LICENSE -------------------------------------------------------------------------------- /Matlab/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbeckr/L-BFGS-B-C/HEAD/Matlab/Makefile -------------------------------------------------------------------------------- /Matlab/compile_mex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbeckr/L-BFGS-B-C/HEAD/Matlab/compile_mex.m -------------------------------------------------------------------------------- /Matlab/driver1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbeckr/L-BFGS-B-C/HEAD/Matlab/driver1.m -------------------------------------------------------------------------------- /Matlab/example_NNLS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbeckr/L-BFGS-B-C/HEAD/Matlab/example_NNLS.m -------------------------------------------------------------------------------- /Matlab/fminunc_wrapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbeckr/L-BFGS-B-C/HEAD/Matlab/fminunc_wrapper.m -------------------------------------------------------------------------------- /Matlab/lbfgsb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbeckr/L-BFGS-B-C/HEAD/Matlab/lbfgsb.m -------------------------------------------------------------------------------- /Matlab/lbfgsb_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbeckr/L-BFGS-B-C/HEAD/Matlab/lbfgsb_wrapper.c -------------------------------------------------------------------------------- /Matlab/lbfgsb_wrapper.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbeckr/L-BFGS-B-C/HEAD/Matlab/lbfgsb_wrapper.mexmaci64 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbeckr/L-BFGS-B-C/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbeckr/L-BFGS-B-C/HEAD/VERSION -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbeckr/L-BFGS-B-C/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/driver1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbeckr/L-BFGS-B-C/HEAD/src/driver1.c -------------------------------------------------------------------------------- /src/driver2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbeckr/L-BFGS-B-C/HEAD/src/driver2.c -------------------------------------------------------------------------------- /src/driver3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbeckr/L-BFGS-B-C/HEAD/src/driver3.c -------------------------------------------------------------------------------- /src/lbfgsb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbeckr/L-BFGS-B-C/HEAD/src/lbfgsb.c -------------------------------------------------------------------------------- /src/lbfgsb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbeckr/L-BFGS-B-C/HEAD/src/lbfgsb.h -------------------------------------------------------------------------------- /src/linesearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbeckr/L-BFGS-B-C/HEAD/src/linesearch.c -------------------------------------------------------------------------------- /src/linpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbeckr/L-BFGS-B-C/HEAD/src/linpack.c -------------------------------------------------------------------------------- /src/miniCBLAS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbeckr/L-BFGS-B-C/HEAD/src/miniCBLAS.c -------------------------------------------------------------------------------- /src/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbeckr/L-BFGS-B-C/HEAD/src/print.c -------------------------------------------------------------------------------- /src/subalgorithms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbeckr/L-BFGS-B-C/HEAD/src/subalgorithms.c -------------------------------------------------------------------------------- /src/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbeckr/L-BFGS-B-C/HEAD/src/timer.c --------------------------------------------------------------------------------