Module supernodal
Expand description
Supernodal factorization module.
A supernodal factorization is one that processes the elements of the LU factors of the input matrix by blocks, rather than by single elements. This is more efficient if the LU factors are somewhat dense.
Structs§
- LU factor structure containing the symbolic and numerical representations.
- LU factor structure containing the symbolic structure.
Functions§
- Computes the numeric values of the LU factors of the matrix
A
as well as the row pivoting permutation, and stores them inlu
androw_perm
/row_perm_inv
. - Computes the size and alignment of the workspace required to perform a numeric LU factorization.
- Computes the symbolic structure of the LU factors of the matrix
A
. - Computes the size and alignment of the workspace required to compute the symbolic LU factorization of a square matrix with size
n
.