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

[geometry] Make geometric entity set backwards compatible with dune 2.5

parent b92a6657
No related branches found
No related tags found
1 merge request!617[WIP] Next
...@@ -25,6 +25,7 @@ ...@@ -25,6 +25,7 @@
#define DUMUX_GRIDVIEW_GEOMETRIC_ENTITY_SET_HH #define DUMUX_GRIDVIEW_GEOMETRIC_ENTITY_SET_HH
#include <memory> #include <memory>
#include <dune/common/version.hh>
#include <dune/grid/common/mcmgmapper.hh> #include <dune/grid/common/mcmgmapper.hh>
#include <dumux/common/entitymap.hh> #include <dumux/common/entitymap.hh>
...@@ -39,13 +40,21 @@ namespace Dumux { ...@@ -39,13 +40,21 @@ namespace Dumux {
template <class GridView, int codim = 0> template <class GridView, int codim = 0>
class GridViewGeometricEntitySet class GridViewGeometricEntitySet
{ {
#if DUNE_VERSION_NEWER(DUNE_COMMON,2,6)
using Mapper = Dune::MultipleCodimMultipleGeomTypeMapper<GridView>; using Mapper = Dune::MultipleCodimMultipleGeomTypeMapper<GridView>;
#else
// Only works for codim == 0, fixed in dune version 2.6
using Mapper = Dune::MultipleCodimMultipleGeomTypeMapper<GridView, Dune::MCMGElementLayout>;
#endif
using Entity = typename GridView::template Codim<codim>::Entity; using Entity = typename GridView::template Codim<codim>::Entity;
public: public:
GridViewGeometricEntitySet(const GridView& gridView) GridViewGeometricEntitySet(const GridView& gridView)
: gridView_(gridView) : gridView_(gridView)
#if DUNE_VERSION_NEWER(DUNE_COMMON,2,6)
, mapper_(gridView, Dune::mcmgLayout(Dune::Codim<codim>())) , mapper_(gridView, Dune::mcmgLayout(Dune::Codim<codim>()))
#else
, mapper_(gridView)
#endif
, entityMap_(std::make_shared<EntityMap<GridView, codim>>(gridView.grid(), mapper_)) , entityMap_(std::make_shared<EntityMap<GridView, codim>>(gridView.grid(), mapper_))
{} {}
......
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