class gpr::optim::LBFGS¶
Overview¶
Limited-memory BFGS algorithm. More…
#include <LBFGS.h>
class LBFGS {
public:
// construction
LBFGS();
~LBFGS();
// methods
void execute(const FieldMatrixd& F, const LBFGSInfo& info, Eigen::VectorXd& z);
};
Detailed Documentation¶
Limited-memory BFGS algorithm.
Methods¶
void execute(const FieldMatrixd& F, const LBFGSInfo& info, Eigen::VectorXd& z)
Executes LBFGS algorithm to find rotational direction.
Parameters:
F |
Force. |
info |
Structure with the information from the previous external iterations. |
z |
Final result on search direction. |