Skip to content
Snippets Groups Projects
Commit 9c864b04 authored by Sander, Oliver's avatar Sander, Oliver
Browse files

Make compile with MPI

parent afd79096
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -13,6 +13,8 @@
#include <dune/solvers/solvers/iterativesolver.hh>
#include <dune/solvers/solvers/loopsolver.hh>
#include <dune/gfe/periodic1dpq1nodalbasis.hh>
#include "geodesicfeassembler.hh"
#include <dune/grid/utility/globalindexset.hh>
#include <dune/gfe/parallel/globalp1mapper.hh>
......@@ -32,6 +34,15 @@ struct MapperFactory<GridView, Dune::Functions::PQkNodalBasis<GridView,1> >
typedef Dune::MultipleCodimMultipleGeomTypeMapper<GridView, Dune::MCMGVertexLayout> LocalMapper;
};
// This case is not going to actually work, but I need the specialization to make
// the sequential code compile.
template <typename GridView>
struct MapperFactory<GridView, Dune::Functions::Periodic1DPQ1NodalBasis<GridView> >
{
typedef Dune::GlobalP1Mapper<GridView> GlobalMapper;
typedef Dune::MultipleCodimMultipleGeomTypeMapper<GridView, Dune::MCMGVertexLayout> LocalMapper;
};
template <typename GridView>
struct MapperFactory<GridView, Dune::Functions::PQkNodalBasis<GridView,2> >
{
......
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