Skip to content
Snippets Groups Projects
Commit 268c0422 authored by Markus Blatt's avatar Markus Blatt
Browse files

Make amgtest compile and work without MPI.

[[Imported from SVN: r1131]]
parent 277ef3b6
No related branches found
No related tags found
No related merge requests found
......@@ -1238,7 +1238,15 @@ namespace Dune
return color!=MPI_UNDEFINED;
}
#else
template<class G, class P,class T1, class T2, class R>
bool graphRepartition(const G& graph, P& oocomm, int nparts,
P*& outcomm,
R& redistInf)
{
if(nparts!=oocomm.size())
DUNE_THROW(NotImplemented, "only available for MPI programs");
}
#endif // HAVE_MPI
} // end of namespace Dune
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment