MCPcopy Create free account
hub / github.com/ErrorAtLine0/infinipaint / compute

Method compute

include/Eigen/src/SparseLU/SparseLU.h:210–215  ·  view source on GitHub ↗

\brief Analyze and factorize the matrix so the solver is ready to solve. * * Compute the symbolic and numeric factorization of the input sparse matrix. * The input matrix should be in column-major storage, otherwise analyzePattern() * will do a heavy copy. * * Call analyzePattern() followed by factorize() * * \sa analyzePattern(), factorize() */

Source from the content-addressed store, hash-verified

208 * \sa analyzePattern(), factorize()
209 */
210 void compute(const MatrixType& matrix) {
211 // Analyze
212 analyzePattern(matrix);
213 // Factorize
214 factorize(matrix);
215 }
216
217 /** \brief Return a solver for the transposed matrix.
218 *

Callers 8

runMethod · 0.45
runMethod · 0.45
runMethod · 0.45
runMethod · 0.45
runMethod · 0.45
runMethod · 0.45
BDCSVD.hFile · 0.45
computeBaseCaseMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected