3#ifndef DUNE_FUNCTIONS_FUNCTIONSPACEBASES_BASISTAGS_HH
4#define DUNE_FUNCTIONS_FUNCTIONSPACEBASES_BASISTAGS_HH
7#include <dune/common/concept.hh>
25 return models<Concept::IndexMergingStrategy,T>();
31 return models<Concept::IndexMergingStrategy,std::decay_t<T>>();
37namespace BasisFactory {
226namespace BasisBuilder {
228 using namespace BasisFactory;
constexpr FlatLexicographic flatLexicographic()
Creates a lexicographic merging of direct children without blocking.
Definition: basistags.hh:188
constexpr BlockedInterleaved blockedInterleaved()
Creates an interleaved merging of direct children with blocking (i.e. creating blocks at the leaves c...
Definition: basistags.hh:218
constexpr FlatInterleaved flatInterleaved()
Creates an interleaved merging of direct children without blocking.
Definition: basistags.hh:198
constexpr BlockedLexicographic blockedLexicographic()
Creates a lexicographic merging of direct children with blocking (i.e. creating one block per direct ...
Definition: basistags.hh:208
Definition: polynomial.hh:10
static constexpr bool isIndexMergingStrategy()
Definition: basistags.hh:23
void registerIndexMergingStrategy(IndexMergingStrategy)
Definition: basistags.hh:15
auto require(T &&t) -> decltype(registerIndexMergingStrategy(t))
Base class for index merging strategies to simplify detection.
Definition: basistags.hh:44
Lexicographic merging of direct children without blocking.
Definition: basistags.hh:80
Interleaved merging of direct children without blocking.
Definition: basistags.hh:114
Lexicographic merging of direct children with blocking (i.e. creating one block per direct child).
Definition: basistags.hh:148
Interleaved merging of direct children with blocking (i.e. creating blocks at the leaves containing o...
Definition: basistags.hh:180