#include <F_SteepestDescentLS.hpp>
Inheritance diagram for F_SteepestDescentLS:


Purpose: Simple steepest Descent Linear Solver
Used to solve a set of linearized differencial equations,....
Some restoration are of the style: A * iNew = iOld
iNew could be X, and iOld could be b.
Paper: "Relaxed Steepest Descent and Cauchy-Barzilai-Borwein Method", M. Raydan & B. F. Svaiter,
Numerical Analysis Report NA/207, January 2001,
University Central of Venezuela, Caracas.
Public Methods | |
| F_SteepestDescentLS (int maxIterations, double epsilon=1.0e-4) | |
| virtual | ~F_SteepestDescentLS () |
| virtual FloatVector * | solve (AFloatMatrix *m, FloatVector *b, FloatVector *dest) |
Protected Methods | |
| virtual FloatVector * | singleSolve (AFloatMatrix *A, FloatVector *b, FloatVector *x=0) |
Private Attributes | |
| double | alpha |
| FloatVector * | r |
| FloatVector * | u |
![]() |
