The base class for the direct and incomplete LU factorization of SuperLU.
More...
#include <SuperLUSupport.h>
|
typedef _MatrixType | MatrixType |
|
typedef MatrixType::Scalar | Scalar |
|
typedef MatrixType::RealScalar | RealScalar |
|
typedef MatrixType::Index | Index |
|
typedef Matrix< Scalar, Dynamic, 1 > | Vector |
|
typedef Matrix< int, 1, MatrixType::ColsAtCompileTime > | IntRowVectorType |
|
typedef Matrix< int, MatrixType::RowsAtCompileTime, 1 > | IntColVectorType |
|
typedef SparseMatrix< Scalar > | LUMatrixType |
|
|
void | initFactorization (const MatrixType &a) |
|
void | init () |
|
void | extractData () const |
|
void | clearFactors () |
|
template<typename _MatrixType, typename Derived>
class Eigen::SuperLUBase< _MatrixType, Derived >
The base class for the direct and incomplete LU factorization of SuperLU.
Definition at line 291 of file SuperLUSupport.h.
template<typename _MatrixType, typename Derived>
Performs a symbolic decomposition on the sparcity of matrix.
This function is particularly useful when solving for several problems having the same structure.
- See also
- factorize()
Definition at line 371 of file SuperLUSupport.h.
373 m_isInitialized =
true;
375 m_analysisIsOk =
true;
376 m_factorizationIsOk =
false;
template<typename _MatrixType, typename Derived>
Computes the sparse Cholesky decomposition of matrix
Definition at line 333 of file SuperLUSupport.h.
335 derived().analyzePattern(
matrix);
336 derived().factorize(
matrix);
template<typename _MatrixType, typename Derived>
Reports whether previous computation was successful.
- Returns
Success
if computation was succesful, NumericalIssue
if the matrix.appears to be negative.
Definition at line 326 of file SuperLUSupport.h.
328 eigen_assert(m_isInitialized &&
"Decomposition is not initialized.");
template<typename _MatrixType, typename Derived>
- Returns
- a reference to the Super LU option object to configure the Super LU algorithms.
Definition at line 319 of file SuperLUSupport.h.
319 {
return m_sluOptions; }
template<typename _MatrixType, typename Derived>
template<typename Rhs >
- Returns
- the solution x of using the current decomposition of A.
- See also
- compute()
Definition at line 344 of file SuperLUSupport.h.
346 eigen_assert(m_isInitialized &&
"SuperLU is not initialized.");
347 eigen_assert(rows()==b.rows()
348 &&
"SuperLU::solve(): invalid number of rows of the right hand side matrix b");
349 return internal::solve_retval<SuperLUBase, Rhs>(*
this, b.derived());
template<typename _MatrixType, typename Derived>
template<typename Rhs >
- Returns
- the solution x of using the current decomposition of A.
- See also
- compute()
Definition at line 357 of file SuperLUSupport.h.
359 eigen_assert(m_isInitialized &&
"SuperLU is not initialized.");
360 eigen_assert(rows()==b.rows()
361 &&
"SuperLU::solve(): invalid number of rows of the right hand side matrix b");
362 return internal::sparse_solve_retval<SuperLUBase, Rhs>(*
this, b.derived());
The documentation for this class was generated from the following file:
- C:/Users/Brig/Documents/ShapeWorksStudio/src/Surfworks/Eigen/src/SuperLUSupport/SuperLUSupport.h