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