77 Ifpack_OverlapGraph(
const Teuchos::RefCountPtr<const Epetra_CrsGraph>& UserMatrixGraph_in,
int OverlapLevel_in);
85 Ifpack_OverlapGraph(
const Teuchos::RefCountPtr<const Epetra_RowMatrix>& UserMatrix_in,
int OverlapLevel_in);
102 int SetParameters(
const Teuchos::ParameterList& parameterlist,
103 bool cerr_warning_if_unused=
false);
125 void Print(std::ostream& os)
const {
129 if (UserMatrix_!=Teuchos::null)
130 os <<
"Overlap Graph created using the user's Epetra_RowMatrix object" << endl;
132 os <<
"Overlap Graph created using the user's Epetra_CrsGraph object" << endl;
134 os <<
" Level of Overlap = " << OverlapLevel_ << endl;
135 OverlapGraph_->Print(os);
142 int ConstructOverlapGraph(
const Teuchos::RefCountPtr<const Epetra_CrsGraph>& UserMatrixGraph);
143 Teuchos::RefCountPtr<Epetra_CrsGraph> OverlapGraph_;
144 Teuchos::RefCountPtr<const Epetra_CrsGraph> UserMatrixGraph_;
145 Teuchos::RefCountPtr<const Epetra_RowMatrix> UserMatrix_;
146 Teuchos::RefCountPtr<Epetra_BlockMap> OverlapRowMap_;
147 Teuchos::RefCountPtr<Epetra_Import> OverlapImporter_;