5#ifndef DUNE_FUNCTIONS_BACKENDS_ISTL_VECTORFACTORY_HH
6#define DUNE_FUNCTIONS_BACKENDS_ISTL_VECTORFACTORY_HH
12#include <dune/common/indices.hh>
14#include <dune/functions/functionspacebases/containerdescriptors.hh>
17#include <dune/istl/multitypeblockvector.hh>
19namespace Dune::Functions {
20namespace ContainerDescriptors {
24struct ISTLVectorFactory
26 void operator() (
const Unknown& tree)
const
32 auto operator() (
const Tuple<V...>& tree)
const
36 }, std::make_index_sequence<
sizeof...(V)>());
39 template<
class V, std::
size_t n>
40 auto operator() (
const Array<V,n>& tree)
const
44 }, std::make_index_sequence<n>());
48 auto operator() (
const Vector<V>& tree)
const
50 using W =
decltype((*this)(tree[0]));
52 for (std::size_t i = 0; i < tree.size(); ++i)
53 result[i] = (*
this)(tree[i]);
57 template<
class V, std::
size_t n>
58 auto operator() (
const UniformArray<V,n>& tree)
const
60 auto node = (*this)(tree[0]);
63 }, std::make_index_sequence<n>());
67 auto operator() (
const UniformVector<V>& tree)
const
69 auto node = (*this)(tree[0]);
70 using W =
decltype(node);
72 for (std::size_t i = 0; i < tree.size(); ++i)
79 auto operator() (
const Value& tree)
const
86 template<std::
size_t n>
87 auto operator() (
const UniformArray<Value,n>& tree)
const
92 auto operator() (
const UniformVector<Value>& tree)
const
99 template<std::
size_t n>
100 auto operator() (
const UniformVector<UniformArray<Value,n>>& tree)
const
105 template<std::
size_t n>
106 auto operator() (
const Vector<UniformArray<Value,n>>& tree)
const
111 template<std::
size_t n, std::
size_t m>
112 auto operator() (
const Array<UniformArray<Value,n>,m>& tree)
const
130template<
class T =
double,
class ContainerDescriptor>
131auto makeISTLVector (
const ContainerDescriptor& tree)
133 auto factory = ContainerDescriptors::Impl::ISTLVectorFactory<T>{};
134 return factory(tree);
This file implements a vector space as a tensor product of a given vector space. The number of compon...
A vector of blocks with memory management.
Definition: bvector.hh:392
vector space out of a tensor product of fields.
Definition: fvector.hh:92
A Vector class to support different block types.
Definition: multitypeblockvector.hh:59
Default exception for dummy implementations.
Definition: exceptions.hh:357
A few common exception classes.
Implements a vector constructed from a given type representing a field and a compile-time given size.
decltype(auto) constexpr unpackIntegerSequence(F &&f, std::integer_sequence< I, i... > sequence)
Unpack an std::integer_sequence<I,i...> to std::integral_constant<I,i>...
Definition: indices.hh:124
#define DUNE_THROW(E,...)
Definition: exceptions.hh:314