#include <AbstractLinAlgPack_DirectSparseSolverImp.hpp>
Public types | |
| typedef Teuchos::RefCountPtr< FactorizationNonzeros > | fact_nonzeros_ptr_t |
| | |
Access | |
| virtual const fact_nonzeros_ptr_t & | get_fact_nonzeros () const |
| Return a reference to a smart pointer to the object that represents the factorization nonzeros. | |
Overridden from MatrixBase | |
| const VectorSpace & | space_cols () const |
| | |
| const VectorSpace & | space_rows () const |
| | |
| size_type | rows () const |
| | |
| size_type | cols () const |
| | |
Overridden from MatrixNonsinguar | |
| mat_mns_mut_ptr_t | clone_mns () |
| | |
Overridden from BasisMatrix | |
| virtual const fact_struc_ptr_t & | get_fact_struc () const |
| | |
Constructors/initailizers | |
| BasisMatrixImp () | |
| Default initializers to uninitialized. | |
| BasisMatrixImp (size_type dim, const fact_struc_ptr_t &fact_struc, const fact_nonzeros_ptr_t &fact_nonzeros) | |
Calls this->initialize(). | |
| virtual void | initialize (size_type dim, const fact_struc_ptr_t &fact_struc, const fact_nonzeros_ptr_t &fact_nonzeros) |
| Initialize given initialized factorization structure and factorization nonzeros objects. | |
| void | set_uninitialized () |
| Make uninitialized. | |
Factory methods to be overridden by subclasses | |
| virtual Teuchos::RefCountPtr< BasisMatrixImp > | create_matrix () const =0 |
Called by this->clone-mns(). | |
Friends | |
| class | DirectSparseSolverImp |
| Allow only DirectSparseSolverImp to initialize objects of this type. Important !!!!! Even though DirectSparseSolverImp has access to these private members it is strictly not to access them directly !!!! | |
The only methods that subclasses must override for a complete basis matrix object are:
AbstractLinAlgPack::MatrixNonsing::V_InvMtV(), and create_matrix().
Note that is if very important that subclasses do not maintain their own copies of smart reference counting pointer objects to the factorization structure or factorization nonzeros. Instead, the methods get_fact_struc() and get_fact_nonzeros() should be called inside of the implementation of the the V_InvMtV() method and then dynamic_cast<> used to get at the concreate objects.
Definition at line 85 of file AbstractLinAlgPack_DirectSparseSolverImp.hpp.
|
|
Definition at line 92 of file AbstractLinAlgPack_DirectSparseSolverImp.hpp. |
|
|
Default initializers to uninitialized.
Definition at line 41 of file AbstractLinAlgPack_DirectSparseSolverImp.cpp. |
|
||||||||||||||||
|
Calls
Definition at line 45 of file AbstractLinAlgPack_DirectSparseSolverImp.cpp. |
|
|
Return a reference to a smart pointer to the object that represents the factorization nonzeros.
Returning a reference to a Definition at line 81 of file AbstractLinAlgPack_DirectSparseSolverImp.cpp. |
|
|
Definition at line 88 of file AbstractLinAlgPack_DirectSparseSolverImp.cpp. |
|
|
Definition at line 93 of file AbstractLinAlgPack_DirectSparseSolverImp.cpp. |
|
|
Definition at line 98 of file AbstractLinAlgPack_DirectSparseSolverImp.cpp. |
|
|
Definition at line 103 of file AbstractLinAlgPack_DirectSparseSolverImp.cpp. |
|
|
Definition at line 111 of file AbstractLinAlgPack_DirectSparseSolverImp.cpp. |
|
|
Definition at line 123 of file AbstractLinAlgPack_DirectSparseSolverImp.cpp. |
|
||||||||||||||||
|
Initialize given initialized factorization structure and factorization nonzeros objects.
Definition at line 54 of file AbstractLinAlgPack_DirectSparseSolverImp.cpp. |
|
|
Make uninitialized. Postconditions:
Definition at line 72 of file AbstractLinAlgPack_DirectSparseSolverImp.cpp. |
|
|
Called by
|
|
|
Allow only DirectSparseSolverImp to initialize objects of this type. Important !!!!! Even though DirectSparseSolverImp has access to these private members it is strictly not to access them directly !!!!
Definition at line 192 of file AbstractLinAlgPack_DirectSparseSolverImp.hpp. |
1.3.9.1