* Compute the symbolic and numeric factorization of the input sparse matrix. * The input matrix should be in column-major storage. */
| 183 | * The input matrix should be in column-major storage. |
| 184 | */ |
| 185 | void compute (const MatrixType& matrix) |
| 186 | { |
| 187 | // Analyze |
| 188 | analyzePattern(matrix); |
| 189 | //Factorize |
| 190 | factorize(matrix); |
| 191 | } |
| 192 | |
| 193 | /** \returns an expression of the transposed of the factored matrix. |
| 194 | * |