From f9bee36d7265253c71fd3fe04a2fd46b9ca6e343 Mon Sep 17 00:00:00 2001 From: Simon Praetorius <simon.praetorius@tu-dresden.de> Date: Mon, 22 Oct 2018 23:46:57 -0400 Subject: [PATCH] added EntitySet as public type in DiscreteFunction --- src/amdis/gridfunctions/DiscreteFunction.hpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/amdis/gridfunctions/DiscreteFunction.hpp b/src/amdis/gridfunctions/DiscreteFunction.hpp index 3f8dc510..71b2045e 100644 --- a/src/amdis/gridfunctions/DiscreteFunction.hpp +++ b/src/amdis/gridfunctions/DiscreteFunction.hpp @@ -36,9 +36,11 @@ namespace AMDiS using NodeToRangeEntry = Dune::Functions::DefaultNodeToRangeMap<SubTree>; using GridView = typename GlobalBasis::GridView; - using EntitySet = Dune::Functions::GridViewEntitySet<GridView, 0>; public: + /// Set of entities the DiscreteFunction is defined on + using EntitySet = Dune::Functions::GridViewEntitySet<GridView, 0>; + /// Global coordinates of the EntitySet using Domain = typename EntitySet::GlobalCoordinate; -- GitLab