Graphite Version 3
An experimental 3D geometry processing program
|
Internal OpenNL functions that interface Cholmod. More...
Go to the source code of this file.
Functions | |
NLAPI NLMatrix NLAPIENTRY | nlMatrixFactorize_CHOLMOD (NLMatrix M, NLenum solver) |
Factorizes a matrix using Cholmod. | |
NLboolean | nlInitExtension_CHOLMOD (void) |
Initializes the CHOLMOD extension. | |
NLboolean | nlExtensionIsInitialized_CHOLMOD (void) |
Tests whether the CHOLMOD extension is initialized. | |
Internal OpenNL functions that interface Cholmod.
Definition in file nl_cholmod.h.
NLboolean nlExtensionIsInitialized_CHOLMOD | ( | void | ) |
Tests whether the CHOLMOD extension is initialized.
NL_TRUE | if the extension is initialized |
NL_FALSE | otherwise |
NLboolean nlInitExtension_CHOLMOD | ( | void | ) |
Initializes the CHOLMOD extension.
This dynamically loads the Cholmod library available in the system (if available) and retrieves the symbols in there.
NL_TRUE | if CHOLMOD could be successfully dynamically loaded and all functions could be found in it. |
NL_FALSE | otherwise. |
Factorizes a matrix using Cholmod.
The Cholmod extension needs to be initialized, by first calling nlInitExtension("CHOLMOD").
[in] | M | the input sparse matrix. Should be a either an NLSparseMatrix or an NLCRSMatrix. |
M
. Subsequent calls to nlMultMatrixVector(P,x,y) solves M y = x (P may be thought-of as M^-1) [in] | solver | one of:
|