Skip to content
Snippets Groups Projects
Commit 9c4bf99f authored by Liesel Schumacher's avatar Liesel Schumacher Committed by Jö Fahlke
Browse files

[adaptivity] Make work for power/composite GridfunctionSpaces.

This fixes a problem of Liesel Schumacher, and should be related to a problem
by Timothy Dodwell, see
<https://lists.dune-project.org/pipermail/dune-pdelab/2016-January/001096.html>.
parent ea4016da
No related branches found
No related tags found
1 merge request!120[adaptivity] Make work for power/composite GridfunctionSpaces.
......@@ -383,13 +383,10 @@ namespace Dune {
typedef std::size_t size_type;
using DF = typename EntitySet::Traits::CoordinateField;
using FiniteElement = typename GFS::Traits::FiniteElementMap::Traits::FiniteElement;
using Range = typename FiniteElement::Traits::LocalBasisType::Traits::RangeType;
template<typename FiniteElement>
struct coarse_function
{
using Range = typename FiniteElement::Traits::LocalBasisType::Traits::RangeType;
template<typename X, typename Y>
void evaluate(const X& x, Y& y) const
......@@ -422,6 +419,7 @@ namespace Dune {
template<typename LeafLFS, typename TreePath>
void leaf(const LeafLFS& leaf_lfs, TreePath treePath)
{
using FiniteElement = typename LeafLFS::Traits::FiniteElementType;
auto& fem = leaf_lfs.gridFunctionSpace().finiteElementMap();
auto element_offset = _leaf_offset_cache[_element.type()][_leaf_index];
......
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