Skip to content
Snippets Groups Projects
Commit d415af61 authored by Dennis Gläser's avatar Dennis Gläser
Browse files

[EntitySet] add additional constructor overload

parent b2b761ea
No related branches found
No related tags found
1 merge request!1586Fix/intersectingentities
...@@ -48,6 +48,13 @@ public: ...@@ -48,6 +48,13 @@ public:
, entityMap_(std::make_shared<EntityMap<GridView, codim>>(gridView.grid(), mapper_)) , entityMap_(std::make_shared<EntityMap<GridView, codim>>(gridView.grid(), mapper_))
{} {}
GridViewGeometricEntitySet(const GridView& gridView,
const Mapper& mapper)
: gridView_(gridView)
, mapper_(mapper)
, entityMap_(std::make_shared<EntityMap<GridView, codim>>(gridView.grid(), mapper_))
{}
GridViewGeometricEntitySet(const GridView& gridView, GridViewGeometricEntitySet(const GridView& gridView,
const Mapper& mapper, const Mapper& mapper,
std::shared_ptr<const EntityMap<GridView, codim>> entityMap) std::shared_ptr<const EntityMap<GridView, codim>> entityMap)
......
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