49 #ifdef HAVE_IFPACK_EPETRAEXT
52 #include "Epetra_CompObject.h"
53 #include "Epetra_MultiVector.h"
54 #include "Epetra_Vector.h"
55 #include "Epetra_CrsGraph.h"
56 #include "Epetra_CrsMatrix.h"
57 #include "Epetra_BlockMap.h"
58 #include "Epetra_Map.h"
59 #include "Epetra_Object.h"
60 #include "Epetra_Comm.h"
61 #include "Epetra_CrsMatrix.h"
62 #include "Epetra_Time.h"
63 #include "Teuchos_RefCountPtr.hpp"
64 #include "EpetraExt_Transpose_RowMatrix.h"
104 return(IsInitialized_);
138 int SetUseTranspose(
bool UseTranspose_in) {UseTranspose_ = UseTranspose_in;
return(0);};
146 return(Multiply(
false,X,Y));
170 const int MaxIters = 1550,
171 const double Tol = 1e-9,
184 const char*
Label()
const {
return(Label_);}
187 int SetLabel(
const char* Label_in)
189 strcpy(Label_,Label_in);
194 double NormInf()
const {
return(0.0);};
218 virtual double GetLambdaMax()
const{
return LambdaMax_;}
221 virtual double GetOmega()
const{
if(UseGlobalDamping_)
return 12.0/(11.0*LambdaMax_);
else return 1.0;}
224 virtual std::ostream&
Print(std::ostream& os)
const;
229 return(NumInitialize_);
241 return(NumApplyInverse_);
247 return(InitializeTime_);
253 return(ComputeTime_);
259 return(ApplyInverseTime_);
270 return(ComputeFlops_);
275 return(ApplyInverseFlops_);
284 Ifpack_SORa(
const Ifpack_SORa&
RHS) :
289 Ifpack_SORa& operator=(
const Ifpack_SORa& )
311 #ifndef EPETRA_NO_32BIT_GLOBAL_INDICES
312 int NumGlobalRows()
const {
return(A_->NumGlobalRows());};
316 int NumGlobalCols()
const {
return(A_->NumGlobalCols());};
318 long long NumGlobalRows64()
const {
return(A_->NumGlobalRows64());};
319 long long NumGlobalCols64()
const {
return(A_->NumGlobalCols64());};
322 int NumMyRows()
const {
return(A_->NumMyRows());};
325 int NumMyCols()
const {
return(A_->NumMyCols());};
328 int PowerMethod(
const int MaximumIterations,
double& lambda_max,
const unsigned int * RngSeed=0);
335 template<
typename int_type>
342 Teuchos::RefCountPtr<Epetra_CrsMatrix> Acrs_;
343 Teuchos::RefCountPtr<Epetra_RowMatrix> A_;
344 Teuchos::RefCountPtr<Epetra_CrsMatrix> W_;
345 Teuchos::RefCountPtr<Epetra_Vector> Wdiag_;
372 bool HaveOAZBoundaries_;
374 bool UseInterprocDamping_;
376 bool UseGlobalDamping_;
380 double LambdaMaxBoost_;
382 int PowerMethodIters_;
385 mutable int NumApplyInverse_;
387 double InitializeTime_;
391 mutable double ApplyInverseTime_;
393 double ComputeFlops_;
395 mutable double ApplyInverseFlops_;
virtual int NumInitialize() const =0
Returns the number of calls to Initialize().
virtual int SetUseTranspose(bool UseTranspose)=0
virtual double ComputeTime() const =0
Returns the time spent in Compute().
virtual double ComputeFlops() const =0
Returns the number of flops in the computation phase.
virtual double ApplyInverseTime() const =0
Returns the time spent in ApplyInverse().
virtual double ApplyInverseFlops() const =0
Returns the number of flops in the application of the preconditioner.
virtual const Epetra_RowMatrix & Matrix() const =0
Returns a pointer to the matrix to be preconditioned.
virtual bool IsInitialized() const =0
Returns true if the preconditioner has been successfully initialized, false otherwise.
virtual std::ostream & Print(std::ostream &os) const =0
Prints basic information on iostream. This function is used by operator<<.
virtual const Epetra_Map & OperatorDomainMap() const =0
virtual const char * Label() const =0
virtual int Initialize()=0
Computes all it is necessary to initialize the preconditioner.
virtual double InitializeTime() const =0
Returns the time spent in Initialize().
Ifpack_CondestType
Ifpack_CondestType: enum to define the type of condition number estimate.
virtual int Apply(const Epetra_MultiVector &X, Epetra_MultiVector &Y) const =0
virtual const Epetra_Map & OperatorRangeMap() const =0
virtual const Epetra_Comm & Comm() const =0
virtual int SetParameters(Teuchos::ParameterList &List)=0
Sets all parameters for the preconditioner.
virtual double Condest() const =0
Returns the computed condition number estimate, or -1.0 if not computed.
virtual bool UseTranspose() const =0
Ifpack_ScalingType enumerable type.
Ifpack_Preconditioner: basic class for preconditioning in Ifpack.
virtual int ApplyInverse(const Epetra_MultiVector &X, Epetra_MultiVector &Y) const =0
Applies the preconditioner to vector X, returns the result in Y.
virtual double InitializeFlops() const =0
Returns the number of flops in the initialization phase.
virtual bool HasNormInf() const =0
virtual int NumCompute() const =0
Returns the number of calls to Compute().
virtual double NormInf() const =0
virtual bool IsComputed() const =0
Returns true if the preconditioner has been successfully computed, false otherwise.
virtual int Compute()=0
Computes all it is necessary to apply the preconditioner.
int Solve(int, TYPE *, TYPE *, TYPE *)
virtual int NumApplyInverse() const =0
Returns the number of calls to ApplyInverse().