Click or drag to resize

CompositeSolver Class

A composite matrix solver. The actual solver is made by a sequence of matrix solvers.
Inheritance Hierarchy
SystemObject
  Altaxo.Calc.LinearAlgebra.Complex.SolversCompositeSolver

Namespace: Altaxo.Calc.LinearAlgebra.Complex.Solvers
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public sealed class CompositeSolver : IIterativeSolver<Complex>

The CompositeSolver type exposes the following members.

Constructors
 NameDescription
Public methodCompositeSolverInitializes a new instance of the CompositeSolver class
Top
Methods
 NameDescription
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodSolve Solves the matrix equation Ax = b, where A is the coefficient matrix, b is the solution vector and x is the unknown vector.
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
Remarks

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.

See Also