00001 #ifndef IFPACK_H 00002 #define IFPACK_H 00003 00004 #include "Ifpack_ConfigDefs.h" 00005 #include "Ifpack_Preconditioner.h" 00006 00008 00088 class Ifpack { 00089 00090 public: 00092 00099 Ifpack_Preconditioner* Create(const string PrecType, 00100 Epetra_RowMatrix* Matrix, 00101 const int overlap = 0); 00102 00104 int SetParameters(int argc, char* argv[], 00105 Teuchos::ParameterList& List, string& PrecType, 00106 int& Overlap); 00107 00108 }; 00109 00110 #endif
1.3.9.1