Skip to content
Snippets Groups Projects
Commit c23dda47 authored by Praetorius, Simon's avatar Praetorius, Simon
Browse files

fixed no-mpi bug in istl backend

parent e76b32e2
Branches
No related tags found
1 merge request!120fixed no-mpi bug in istl backend
......@@ -74,6 +74,16 @@ CommunicationCreator<ISTLCommunication<Basis>>
return std::make_unique<Communication>(basis, cat);
}
#endif
#else // HAVE_MPI
template <class Basis>
std::unique_ptr<ISTLCommunication<Basis>>
CommunicationCreator<ISTLCommunication<Basis>>
::create(Basis const& /*basis*/, std::string const& /*prefix*/)
{
return std::make_unique<Communication>();
}
#endif // HAVE_MPI
} // end namespace AMDiS
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment