Skip to content
Snippets Groups Projects
Commit 3aefa7cc authored by Timo Koch's avatar Timo Koch
Browse files

[common] Increase flexibility of default mapper traits

parent dea9e156
No related branches found
No related tags found
1 merge request!1008Feature/improve custom mapper handling
...@@ -28,11 +28,13 @@ ...@@ -28,11 +28,13 @@
namespace Dumux { namespace Dumux {
template <class GridView> template <class GridView,
class EM = Dune::MultipleCodimMultipleGeomTypeMapper<GridView>,
class VM = Dune::MultipleCodimMultipleGeomTypeMapper<GridView>>
struct DefaultMapperTraits struct DefaultMapperTraits
{ {
using ElementMapper = Dune::MultipleCodimMultipleGeomTypeMapper<GridView>; using ElementMapper = EM;
using VertexMapper = Dune::MultipleCodimMultipleGeomTypeMapper<GridView>; using VertexMapper = VM;
}; };
} // namespace Dumux } // namespace Dumux
......
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