Click or drag to resize

IIterativeSolverSetupT Interface

Defines the interface for objects that can create an iterative solver with specific settings. This interface is used to pass iterative solver creation setup information around.

Namespace: Altaxo.Calc.LinearAlgebra.Solvers
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public interface IIterativeSolverSetup<T>
where T : struct, new(), IEquatable<T>, IFormattable

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "T:Altaxo.Calc.LinearAlgebra.Solvers.IIterativeSolverSetup`1"]

The IIterativeSolverSetupT type exposes the following members.

Properties
 NameDescription
Public propertyPreconditionerType Gets type of preconditioner, if any, that will be created by this setup object.
Public propertyReliability Gets the relative reliability of the solver.
Public propertySolutionSpeed Gets the relative speed of the solver.
Public propertySolverType Gets the type of the solver that will be created by this setup object.
Top
Methods
 NameDescription
Public methodCreatePreconditioner Creates the preconditioner to be used by default (can be overwritten).
Public methodCreateSolver Creates the iterative solver to be used.
Top
See Also