#include <FSecantLineSearch.hpp>
Inheritance diagram for FSecantLineSearch:
Purpose: Newton-Raphson Line Search for NonLinear Solver Papers: "An Introduction to the Conjugate Gradient Method Without the Agonizing Pain", J. R. Shewchuk, Tutorial August 4, 1994, School of Computer Science, Carnegie Mellon University.
Public Methods | |
FSecantLineSearch (int maxIterations, double sigma, double epsilon=1.0e-4) | |
virtual | ~FSecantLineSearch () |
virtual double | find (FloatVector *x, AbsFObjectiveFn *fn, FloatVector *d) |
Private Attributes | |
double | sigma0 |
FloatVector * | f1 |
FloatVector * | xd |