49template<
class container>
60 template<
class Topology>
76 template<
class Topology>
79 for(
int i=0; i<3; i++)
91 for(
int i=0; i<3; i++)
93 m_values.assign(2,copyable);
103 template<
class OtherContainer>
105 for(
unsigned i=0; i<3; i++)
106 for(
unsigned j=0; j<3; j++)
107 m_mat_idx(i,j)=src.
idx(i,j);
109 for(
unsigned i=0; i<src.
values().size(); i++)
119 int idx(
unsigned i,
unsigned j)
const{
120 return m_mat_idx(i,j);
130 int&
idx(
unsigned i,
unsigned j){
131 return m_mat_idx(i,j);
141 const container&
value(
size_t i,
size_t j)
const{
142 int k = m_mat_idx(i,j);
158 const std::vector<container>&
values()
const{
174 std::vector<container> m_values;
A square nxn matrix.
Definition operator.h:31
void resize(unsigned m, T val=T())
Resize.
Definition operator.h:117
SquareMatrix transpose() const
Transposition.
Definition operator.h:156
Function discretization routines.
DG_DEVICE T one(T x, Ts ...xs)
Definition functions.h:24
DG_DEVICE T zero(T x, Ts ...xs)
This enum can be used in dg::evaluate.
Definition functions.h:19
void copy(const ContainerTypeIn &source, ContainerTypeOut &target)
Definition blas1.h:243
void assign(const from_ContainerType &from, ContainerType &to, Params &&... ps)
Generic way to assign the contents of a from_ContainerType object to a ContainerType object optionall...
Definition blas1.h:767
auto evaluate(Functor &&f, const Topology &g)
Evaluate a function on grid coordinates
Definition evaluation.h:74
This is the namespace for all functions and classes defined and used by the discontinuous Galerkin li...
Class for 2x2 and 3x3 matrices sharing elements.
Definition tensor.h:51
void construct(const Topology &grid)
Construct the unit tensor.
Definition tensor.h:77
SparseTensor(const SparseTensor< OtherContainer > &src)
Type conversion from other value types.
Definition tensor.h:104
int idx(unsigned i, unsigned j) const
read index into the values array at the given position
Definition tensor.h:119
SparseTensor transpose() const
Return the transpose of the currrent tensor.
Definition tensor.h:166
SparseTensor()
no value is set, Indices default to -1
Definition tensor.h:54
SparseTensor(const container ©able)
Construct the unit tensor.
Definition tensor.h:69
container container_type
Definition tensor.h:52
std::vector< container > & values()
Return write access to the values array.
Definition tensor.h:151
int & idx(unsigned i, unsigned j)
write index into the values array at the given position
Definition tensor.h:130
const std::vector< container > & values() const
Return read access to the values array.
Definition tensor.h:158
void construct(const container ©able)
Construct the unit tensor.
Definition tensor.h:89
SparseTensor(const Topology &grid)
Construct the unit tensor.
Definition tensor.h:61
const container & value(size_t i, size_t j) const
Read access the underlying container.
Definition tensor.h:141