Type CompositeSolver
Namespace MathNet.Numerics.LinearAlgebra.Single.Solvers
Interfaces IIterativeSolver<T>
Solver based on: Faster PDE-based simulations using robust composite linear solvers S. Bhowmicka, P. Raghavan a,*, L. McInnes b, B. Norris Future Generation Computer Systems, Vol 20, 2004, pp 373�387
Note that if an iterator is passed to this solver it will be used for all the sub-solvers.
Matrix<T>
matrixThe coefficient matrix, A
.
Vector<T>
inputThe solution vector, b
Vector<T>
resultThe result vector, x
Iterator<T>
iteratorThe iterator to use to control when to stop iterating.
IPreconditioner<T>
preconditionerThe preconditioner to use for approximations.