template<
class V,
class CO = Imp::DeducedCoefficientTag>
class Dune::Functions::HierarchicVectorWrapper< V, CO >
A wrapper providing multiindex access to vector entries.
The coefficient type should be a type such that the coefficients entries for each global basis function can be cast to this type. This is necessary because the wrapper cannot determine this type automatically for multi-type containers and non-uniform indices. The reason for this is, that the multi-index type will then be dynamically sized such that the index depth cannot statically be determined from the multi-indices. However, the compiler needs a fixed termination criterion for instantiation of recursive functions.
If no coefficient type is given, the wrapper tries to determine the coefficient type on its own assuming that the multi-indices have fixed size.
- Deprecated:
- This class is deprecated. Use istlVectorBackend(V) instead.
- Template Parameters
-
V | Type of the raw wrapper vector |
CO | Coefficient type |