Click or drag to resize
SuperLUSymmetricMode Property
The symmetric mode option.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public bool SymmetricMode { get; set; }

Property Value

Type: Boolean
A bool indicating if symmetric mode is to be used.
Remarks
The symmetric mode option should be applied if the input matrix A is diagonally dominant or nearly so. The user should then define a small diagonal pivot threshold (e.g. 0.0 or 0.01) by property DiagonalPivotThreshold and choose an (A^T+A)-based column permutation algorithm (e.g. column permutation method SuperLU.ColumnOrdering.MinimumDegreeAtPlusA). SymmetricMode=true implies symmetric mode is used.

By default, SymmetricMode=false.

See Also