#include <Amesos_Lapack.h>
Inheritance diagram for Amesos_Lapack:
Public Member Functions | |
Constructor methods | |
| Amesos_Lapack (const Epetra_LinearProblem &LinearProblem) | |
| Amesos_Lapack Constructor. | |
| ~Amesos_Lapack (void) | |
| Amesos_Lapack Destructor. | |
Mathematical functions. | |
| int | SymbolicFactorization () |
| Performs SymbolicFactorization on the matrix A. | |
| int | NumericFactorization () |
| Performs NumericFactorization on the matrix A. | |
| int | Solve () |
| Solves A X = B (or AT x = B). | |
Additional methods required to support the Epetra_Operator interface. | |
| const Epetra_LinearProblem * | GetProblem () const |
| Returns the Epetra_LinearProblem. | |
| bool | MatrixShapeOK () const |
| Returns true if the solver can handle this matrix shape. | |
| int | SetUseTranspose (bool UseTranspose) |
| If set true, X will be set to the solution of AT X = B (not A X = B). | |
| bool | UseTranspose () const |
| Returns the current UseTranspose setting. | |
| const Epetra_Comm & | Comm () const |
| Returns a pointer to the Epetra_Comm communicator associated with this operator. | |
| int | SetParameters (Teuchos::ParameterList &ParameterList) |
| Updates internal variables. | |
| int | GEEV (Epetra_Vector &Er, Epetra_Vector &Ei) |
| Computes the eigenvalues of the linear system matrix using DGEEV. | |
| void | PrintTiming () |
| Print timing information. | |
| void | PrintStatus () |
| Print information about the factorization and solution phases. | |
Protected Member Functions | |
| const Epetra_RowMatrix * | Matrix () const |
| Returns a pointer to the linear system matrix. | |
| int | NumGlobalRows () const |
| Returns the number of global rows, or -1 if Matrix() returns 0. | |
| int | NumMyRows () const |
| Returns the number of local rows, or -1 if Matrix() returns 0. | |
| const Epetra_Map & | SerialMap () |
| Returns a reference to serial map (that with all elements on process 0). Builds SerialMap_ if necessary or required. | |
| Epetra_RowMatrix & | SerialMatrix () |
| Returns a reference to serial matrix (that with all rows on process 0). Builds SerialMap_ if necessary or required. | |
| Epetra_CrsMatrix & | SerialCrsMatrix () |
| const Epetra_Import & | Importer () |
| Returns a reference to the importer map. Builds SerialMap_ if necessary or required. | |
| int | SolveSerial (Epetra_MultiVector &X, const Epetra_MultiVector &B) |
| Solves the linear system, when only one process is used. | |
| int | SolveDistributed (Epetra_MultiVector &X, const Epetra_MultiVector &B) |
| Solves the linear system, when more than one process is used. | |
| int | DistributedToSerial () |
| Converts a distributed matrix to serial matrix. | |
| int | SerialToDense () |
| Converts a serial matrix to dense format. | |
| int | DenseToFactored () |
| Factors the matrix using LAPACK. | |
Protected Attributes | |
| Teuchos::RefCountPtr< Epetra_RowMatrix > | SerialMatrix_ |
| Teuchos::RefCountPtr< Epetra_CrsMatrix > | SerialCrsMatrix_ |
| Teuchos::RefCountPtr< Epetra_Map > | SerialMap_ |
| Teuchos::RefCountPtr< Epetra_Import > | Importer_ |
| Epetra_SerialDenseMatrix | DenseMatrix_ |
| Dense matrix. | |
| Epetra_SerialDenseMatrix | DenseLHS_ |
| Dense LHS. | |
| Epetra_SerialDenseMatrix | DenseRHS_ |
| Dense RHS. | |
| Epetra_SerialDenseSolver | DenseSolver_ |
| Linear problem for dense matrix and vectors. | |
| bool | UseTranspose_ |
If true, the linear system with the transpose will be solved. | |
| const Epetra_LinearProblem * | Problem_ |
| Pointer to the linear problem. | |
| int | NumSymbolicFact_ |
| Number of calls to SymbolicFactorization(). | |
| int | NumNumericFact_ |
| Number of calls to NumericFactorization(). | |
| int | NumSolve_ |
| Number of calls to Solver(). | |
| int | NumGlobalRows_ |
| int | NumGlobalNonzeros_ |
Class Amesos_Lapack enables the solution of the distributed linear system, defined by an Epetra_LinearProblem, using LAPACK.
Amesos_Lapack stores the lineaar system matrix as an Epetra_SerialDensMatrix. The linear problem is an Epetra_SerialDenseProblem. Amesos_Lapack factorizes the matrix using DGETRF().
|
|
Amesos_Lapack Constructor. Creates an Amesos_Lapack instance, using an Epetra_LinearProblem, passing in an already-defined Epetra_LinearProblem object. Note: The operator in LinearProblem must be an Epetra_RowMatrix. |
|
|
Amesos_Lapack Destructor. Completely deletes an Amesos_Lapack object. |
|
||||||||||||
|
Computes the eigenvalues of the linear system matrix using DGEEV.
|
|
|
Returns the Epetra_LinearProblem.
Warning! Do not call Implements Amesos_BaseSolver. |
|
|
Returns true if the solver can handle this matrix shape. Returns true if the matrix shape is one that the underlying sparse direct solver can handle. Classes that work only on square matrices should return false for rectangular matrices. Classes that work only on symmetric matrices whould return false for non-symmetric matrices. Implements Amesos_BaseSolver. |
|
|
Performs NumericFactorization on the matrix A. In addition to performing numeric factorization on the matrix A, the call to NumericFactorization() implies that no change will be made to the underlying matrix without a subsequent call to NumericFactorization(). <br >Preconditions:
<br >Postconditions:
Implements Amesos_BaseSolver. |
|
|
Updates internal variables. <br >Preconditions:
<br >Postconditions:
Implements Amesos_BaseSolver. |
|
|
If set true, X will be set to the solution of AT X = B (not A X = B). If the implementation of this interface does not support transpose use, this method should return a value of -1. <br >Preconditions:
<br >Postconditions:
Implements Amesos_BaseSolver. |
|
|
Solves A X = B (or AT x = B). <br >Preconditions:
<br >Postconditions:
Implements Amesos_BaseSolver. |
|
|
Performs SymbolicFactorization on the matrix A. In addition to performing symbolic factorization on the matrix A, the call to SymbolicFactorization() implies that no change will be made to the non-zero structure of the underlying matrix without a subsequent call to SymbolicFactorization(). <br >Preconditions:
<br >Postconditions:
Implements Amesos_BaseSolver. |
1.3.9.1