44 #ifndef EPETRA_LINEARPROBLEM_H
45 #define EPETRA_LINEARPROBLEM_H
49 #ifndef DOXYGEN_SHOULD_SKIP_THIS
50 enum ProblemDifficultyLevel {easy, moderate, hard, unsure};
104 int CheckInput()
const;
111 #ifdef DOXYGEN_SHOULD_SKIP_THIS
125 { A_ = A; Operator_ = A; }
183 bool IsOperatorSymmetric()
const {
return(OperatorSymmetric_);};
void SetOperator(Epetra_Operator *A)
Set Operator A of linear problem AX = B using an Epetra_Operator.
Epetra_MultiVector: A class for constructing and using dense multi-vectors, vectors and matrices in p...
void SetLHS(Epetra_MultiVector *X)
Set left-hand-side X of linear problem AX = B.
void SetOperator(Epetra_RowMatrix *A)
Set Operator A of linear problem AX = B using an Epetra_RowMatrix.
Epetra_MultiVector * GetLHS() const
Get a pointer to the left-hand-side X.
Epetra_MultiVector * GetRHS() const
Get a pointer to the right-hand-side B.
Epetra_Vector: A class for constructing and using dense vectors on a parallel computer.
Epetra_Vector * RightScaleVector_
ProblemDifficultyLevel PDL_
void SetRHS(Epetra_MultiVector *B)
Set right-hand-side B of linear problem AX = B.
Epetra_RowMatrix * GetMatrix() const
Get a pointer to the matrix A.
Epetra_Vector * LeftScaleVector_
Epetra_Operator: A pure virtual class for using real-valued double-precision operators.
ProblemDifficultyLevel GetPDL() const
Get problem difficulty level.
Epetra_LinearProblem: The Epetra Linear Problem Class.
void SetPDL(ProblemDifficultyLevel PDL)
Set problem difficulty level.
Epetra_RowMatrix: A pure virtual class for using real-valued double-precision row matrices...