iMSTK
Interactive Medical Simulation Toolkit
|
Base class for iterative linear solvers. More...
#include <imstkIterativeLinearSolver.h>
Public Member Functions | |
virtual void | setMaxNumIterations (const size_t maxIter) |
Do one iteration of the method. More... | |
virtual size_t | getMaxNumIterations () const |
virtual const Vectord & | getResidualVector () |
Return residual vector. | |
virtual const Vectord & | getResidualVector (const Vectord &x) |
virtual double | getResidual (const Vectord &x) |
Return residue in 2-norm. | |
void | print () const override |
Print solver information. | |
virtual void | solve (Vectord &x) override |
Solve the linear system using Gauss-Seidel iterations. | |
bool | isIterative () const override |
Returns true if the solver is iterative. | |
![]() | |
LinearSolver () | |
Default constructor/destructor. | |
virtual void | setSystem (std::shared_ptr< LinearSystemType > newSystem) |
Set/get the system. Replaces/Returns the stored linear system of equations. | |
std::shared_ptr< LinearSystemType > | getSystem () const |
void | setTolerance (const double tolerance) |
Set solver tolerance. | |
double | getTolerance () const |
Get solver tolerance. | |
Type | getType () |
Return the type of the solver. | |
Protected Attributes | |
size_t | m_maxIterations = 100 |
Maximum number of iterations to be performed. | |
Vectord | m_residual |
Storage for residual vector. | |
![]() | |
Type | m_type |
Type of the scene object. | |
double | m_tolerance |
default tolerance | |
std::shared_ptr< LinearSystemType > | m_linearSystem |
Linear system of equations. | |
Additional Inherited Members | |
![]() | |
enum | Type |
using | MatrixType = SparseMatrixd |
using | LinearSystemType = LinearSystem< MatrixType > |
Base class for iterative linear solvers.
Definition at line 18 of file imstkIterativeLinearSolver.h.
|
virtual |
Do one iteration of the method.
set/get the maximum number of iterations for the iterative solver.
Reimplemented in imstk::SOR, imstk::GaussSeidel, imstk::Jacobi, and imstk::ConjugateGradient.
Definition at line 14 of file imstkIterativeLinearSolver.cpp.