Skip to content
Snippets Groups Projects
Commit 064ff493 authored by Peter Bastian's avatar Peter Bastian
Browse files

added two new capabilities

[[Imported from SVN: r4140]]
parent 6514dea2
Branches
Tags
No related merge requests found
......@@ -35,6 +35,18 @@ namespace Dune
static const bool v = false;
};
template<class Grid>
struct isLevelwiseConforming
{
static const bool v = false;
};
template<class Grid>
struct hasHangingNodes
{
static const bool v = false;
};
/*
forward
Capabilities::Something<const Grid>
......@@ -60,6 +72,18 @@ namespace Dune
static const bool v = Dune::Capabilities::isParallel<Grid>::v;
};
template<class Grid>
struct isLevelwiseConforming<const Grid>
{
static const bool v = Dune::Capabilities::isLevelwiseConforming<Grid>::v;
};
template<class Grid>
struct hasHangingNodes<const Grid>
{
static const bool v = Dune::Capabilities::hasHangingNodes<Grid>::v;
};
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment