7 #ifndef LIN_REFERENCES_DIAGONAL_MAPPING_REFERENCE_HPP_ 8 #define LIN_REFERENCES_DIAGONAL_MAPPING_REFERENCE_HPP_ 10 #include "../core.hpp" 32 "DiagonalMappingReference<...> types must have vector traits.");
34 "Underlying mapping for a diagonal reference must be a square matrix.");
88 constexpr
size_t rows()
const {
89 return _mapping.
rows();
96 constexpr
size_t cols()
const {
116 return _mapping(i, i);
134 return _mapping(i, i);
140 typedef _elem_t<E> type;
145 constexpr
static size_t rows = E::Traits::rows;
146 constexpr
static size_t cols = 1;
147 constexpr
static size_t max_rows = E::Traits::max_rows;
148 constexpr
static size_t max_cols = 1;
constexpr Traits::elem_t & operator()(size_t i, size_t j)
Provides read and write access to tensor elements.
Definition: diagonal_mapping_reference.hpp:112
Collection of compile time information describing a tensor type which is deemed a vector...
Definition: vector.hpp:103
constexpr size_t cols() const
Definition: diagonal_mapping_reference.hpp:96
Tensor interface providing read and write access to elements.
Definition: mapping.hpp:39
constexpr DiagonalMappingReference(Mapping< E > &mapping)
Constructs a new diagonal reference with the provided mapping.
Definition: diagonal_mapping_reference.hpp:77
constexpr size_t size() const
Definition: stream.hpp:90
Provides a tensor type's element type.
Definition: tensor.hpp:28
Collection of compile time information about a specific tensor class.
Definition: tensor.hpp:75
constexpr DiagonalMappingReference< E > & derived()
Definition: stream.hpp:57
traits< DiagonalMappingReference< E > > Traits
Traits information for this type.
Definition: diagonal_mapping_reference.hpp:32
#define LIN_ASSERT(x)
Asserts the condition x when assertions are enabled within lin.
Definition: config.hpp:22
std::size_t size_t
Type tracking tensor dimensions and sizing.
Definition: config.hpp:33
Tests if a tensor type is a matrix.
Definition: matrix.hpp:27
Tests if a tensor type is "square".
Definition: tensor.hpp:389
constexpr size_t rows() const
Definition: stream.hpp:76
constexpr Traits::elem_t & operator()(size_t i)
Provides read and write access to tensor elements.
Definition: diagonal_mapping_reference.hpp:131
Logical AND operation for template metaprogramming.
Definition: utilities.hpp:54
Tests if a tensor type is a vector.
Definition: vector.hpp:73
constexpr size_t cols() const
Definition: stream.hpp:82
_elem_t< C > elem_t
Tensor's element type.
Definition: tensor.hpp:81
constexpr size_t rows() const
Definition: diagonal_mapping_reference.hpp:88
Definition: config.hpp:27
vector_traits< DiagonalMappingReference< E > > VectorTraits
Vector traits information for this type.
Definition: diagonal_mapping_reference.hpp:47
Generic diagonal reference with read and write access.
Definition: diagonal_mapping_reference.hpp:30
Provides a specific tensor type's compile time dimensions.
Definition: tensor.hpp:60
constexpr Traits::eval_t eval() const
Forces evaluation of this stream to a value backed type.
Definition: stream.hpp:157