stlbfgs
stlbfgs copied to clipboard
C++ L-BFGS implementation using plain STL
Results
2
stlbfgs issues
Sort by
recently updated
recently updated
newest added
I have implemented your LBFGS implementation in my chemistry code and try to use it to minimize the energy of molecules using a classical potential function. For some compounds it...
At line 40 in the linesearch.cpp code there is a divide by zero occurring. ``` double find_quadratic_minimizer(double a, double ga, double b, double gb) { return b + ((b -...