00001 #ifndef IFPACK_CONDEST_H 00002 #define IFPACK_CONDEST_H 00003 00004 #include "Ifpack_ConfigDefs.h" 00005 #include "Ifpack_CondestType.h" 00006 class Ifpack_Preconditioner; 00007 class Epetra_RowMatrix; 00008 00009 double Ifpack_Condest(const Ifpack_Preconditioner& IFP, 00010 const Ifpack_CondestType CT, 00011 const int MaxIters = 1550, 00012 const double Tol = 1e-9, 00013 Epetra_RowMatrix* Matrix = 0); 00014 00015 #endif // IFPACK_CONDEST_H
1.3.9.1