#include <F_IterativeNonLS.hpp>
Inheritance diagram for F_IterativeNonLS:
Purpose: Abstract of Iterative 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 | |
F_IterativeNonLS (int maxIterations, double epsilon=1.0e-4) | |
F_IterativeNonLS (int maxIterations, AbsFLineSearch *lSearch, double epsilon=1.0e-4) | |
virtual | ~F_IterativeNonLS () |
virtual FloatVector * | solve (AbsFObjectiveFn *fn, FloatVector *x=0) |
Protected Methods | |
virtual FloatVector * | singleSolve (AbsFObjectiveFn *fn, FloatVector *x=0)=0 |
Protected Attributes | |
int | maxIter |
double | eps |
bool | converge |
AbsFLineSearch * | lineSearch |
AFSymMatrix * | H |