The method used in the numerical factorization of the permuted input matrix.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public SparseCholesky..::.NumericFactorization NumericFactorizationMethod { get; set; }
Visual Basic (Declaration)
Public Property NumericFactorizationMethod As SparseCholesky..::.NumericFactorization
Visual C++
public:
property SparseCholesky..::.NumericFactorization NumericFactorizationMethod {
	SparseCholesky..::.NumericFactorization get ();
	void set (SparseCholesky..::.NumericFactorization value);
}

Field Value

A NumericFactorization value equal to StandardMethod or MultiFrontalMethod representing the method used in the numeric factorization of the permuted input matrix.

Remarks

Method Name Description
StandardMethod standard method as described by George/Liu (1981). This is the default.
MultiFrontalMethod multifrontal method

See Also