3#include <thrust/host_vector.h>
17template<
class Topology,
size_t N,
size_t ...I>
18auto do_weights(
const Topology& g, std::array<bool, N> coo, std::index_sequence<I...>)
20 std::array<
decltype(g.weights(0)),N>
weights;
21 for(
unsigned u=0; u<N; u++)
23 for(
unsigned u=0; u<N; u++)
28template<
class Topology,
size_t ...I>
29auto do_weights(
const Topology& g, std::index_sequence<I...>)
61template<
class Topology>
64 return do_weights( g, std::make_index_sequence<Topology::ndim()>());
90template<
class Topology>
91auto weights(
const Topology& g, std::array<
bool,Topology::ndim()> remains)
93 return do_weights( g, remains, std::make_index_sequence<Topology::ndim()>());
106template<
class Topology>
auto kronecker(Functor &&f, const ContainerType &x0, const ContainerTypes &... xs)
Memory allocating version of dg::blas1::kronecker
Definition blas1.h:857
void copy(const ContainerTypeIn &source, ContainerTypeOut &target)
Definition blas1.h:243
void transform(const ContainerType1 &x, ContainerType &y, UnaryOp op)
Definition blas1.h:585
auto inv_weights(const Topology &g)
Inverse nodal weight coefficients.
Definition weights.h:107
auto weights(const Topology &g)
Nodal weight coefficients.
Definition weights.h:62
This is the namespace for all functions and classes defined and used by the discontinuous Galerkin li...
Definition subroutines.h:100