46 #if defined(Ifpack_SHOW_DEPRECATED_WARNINGS) 
   48 #warning "The Ifpack package is deprecated" 
   54 #ifdef HAVE_IFPACK_SUPERLU 
   59 #include "Epetra_CompObject.h" 
   60 #include "Epetra_MultiVector.h" 
   61 #include "Epetra_Vector.h" 
   62 #include "Epetra_CrsGraph.h" 
   63 #include "Epetra_CrsMatrix.h" 
   64 #include "Epetra_BlockMap.h" 
   65 #include "Epetra_Map.h" 
   66 #include "Epetra_Object.h" 
   67 #include "Epetra_Comm.h" 
   68 #include "Epetra_RowMatrix.h" 
   69 #include "Epetra_Time.h" 
   70 #include "Teuchos_RefCountPtr.hpp" 
   77 #include "slu_ddefs.h" 
  113     return(IsInitialized_);
 
  145   int SetUseTranspose(
bool UseTranspose_in) {UseTranspose_ = UseTranspose_in; 
return(0);};
 
  154     return(Multiply(
false,X,Y));
 
  178                  const int MaxIters = 1550,
 
  179                  const double Tol = 1e-9,
 
  194   const char* 
Label()
 const {
return(Label_);}
 
  197   int SetLabel(
const char* Label_in)
 
  199     strcpy(Label_,Label_in);
 
  204   double NormInf()
 const {
return(0.0);};
 
  228   virtual std::ostream& 
Print(std::ostream& os) 
const;
 
  233     return(NumInitialize_);
 
  245     return(NumApplyInverse_);
 
  251     return(InitializeTime_);
 
  257     return(ComputeTime_);
 
  263     return(ApplyInverseTime_);
 
  288   Ifpack_SILU(
const Ifpack_SILU& 
RHS):
 
  294   Ifpack_SILU& operator=(
const Ifpack_SILU& 
RHS)
 
  318   double DropTol()
 const {
return DropTol_;}
 
  321   double FillTol()
 const{
return FillTol_;}
 
  324   double FillFactor()
 const{
return FillFactor_;}
 
  327   int DropRule()
 const{
return DropRule_;}
 
  329 #ifndef EPETRA_NO_32BIT_GLOBAL_INDICES 
  330   int NumGlobalRows()
 const {
return(
Graph().NumGlobalRows());};
 
  334   int NumGlobalCols()
 const {
return(
Graph().NumGlobalCols());};
 
  337   int NumGlobalNonzeros()
 const {
return(
Graph().NumGlobalNonzeros());};
 
  340   virtual int NumGlobalBlockDiagonals()
 const {
return(
Graph().NumGlobalBlockDiagonals());};
 
  344   long long NumGlobalRows64()
 const {
return(
Graph().NumGlobalRows64());};
 
  347   long long NumGlobalCols64()
 const {
return(
Graph().NumGlobalCols64());};
 
  350   long long NumGlobalNonzeros64()
 const {
return(
Graph().NumGlobalNonzeros64());};
 
  353   virtual long long NumGlobalBlockDiagonals64()
 const {
return(
Graph().NumGlobalBlockDiagonals64());};
 
  356   int NumMyRows()
 const {
return(
Graph().NumMyRows());};
 
  359   int NumMyCols()
 const {
return(
Graph().NumMyCols());};
 
  362   int NumMyNonzeros()
 const {
return(
Graph().NumMyNonzeros());};
 
  365   virtual int NumMyBlockDiagonals()
 const {
return(
Graph().NumMyBlockDiagonals());};
 
  368   virtual int NumMyDiagonals()
 const {
return(NumMyDiagonals_);};
 
  370 #ifndef EPETRA_NO_32BIT_GLOBAL_INDICES 
  371   int IndexBase()
 const {
return(
Graph().IndexBase());};
 
  374   long long IndexBase64()
 const {
return(
Graph().IndexBase64());};
 
  391   Teuchos::RefCountPtr<Epetra_RowMatrix> A_;
 
  392   Teuchos::RefCountPtr<Epetra_CrsGraph> Graph_;
 
  393   Teuchos::RefCountPtr<Epetra_Map> IlukRowMap_;
 
  394   Teuchos::RefCountPtr<Epetra_Map> IlukDomainMap_;
 
  395   Teuchos::RefCountPtr<Epetra_Map> IlukRangeMap_;
 
  398   Teuchos::RefCountPtr<Epetra_CrsMatrix> Aover_;
 
  403   bool ValuesInitialized_;
 
  428   mutable int NumApplyInverse_;
 
  430   double InitializeTime_;
 
  434   mutable double ApplyInverseTime_;
 
  438 #ifdef HAVE_IFPACK_SUPERLU5_API 
  439   mutable GlobalLU_t lu_;
 
  441   mutable SuperLUStat_t stat_;
 
  444   mutable superlu_options_t options_;
 
  446   mutable SuperMatrix SA_,SAc_,SL_,SU_,SY_;
 
  448   int *etree_,*perm_r_,*perm_c_;
 
  452   template<
typename int_type>
 
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. 
adjacency_list< vecS, vecS, undirectedS, no_property, property< edge_weight_t, double > > Graph
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().