7 #ifndef LIN_REFERENCES_DIAGONAL_STREAM_REFERENCE_HPP_ 8 #define LIN_REFERENCES_DIAGONAL_STREAM_REFERENCE_HPP_ 10 #include "../core.hpp" 32 "DiagonalStreamReference<...> types must have vector traits.");
34 "Underlying mapping for a diagonal reference must be a square matrix.");
86 constexpr
size_t rows()
const {
87 return _stream.
rows();
94 constexpr
size_t cols()
const {
114 return _stream(i, i);
132 return _stream(i, i);
138 typedef _elem_t<E> type;
143 constexpr
static size_t rows = E::Traits::rows;
144 constexpr
static size_t cols = 1;
145 constexpr
static size_t max_rows = E::Traits::max_rows;
146 constexpr
static size_t max_cols = 1;
Collection of compile time information describing a tensor type which is deemed a vector...
Definition: vector.hpp:103
Tensor interface providing read only access to elements.
Definition: stream.hpp:43
constexpr size_t size() const
Definition: stream.hpp:90
Provides a tensor type's element type.
Definition: tensor.hpp:28
constexpr Traits::elem_t operator()(size_t i, size_t j) const
Provides read only access to tensor elements.
Definition: diagonal_stream_reference.hpp:110
Collection of compile time information about a specific tensor class.
Definition: tensor.hpp:75
constexpr DiagonalStreamReference< E > & derived()
Definition: stream.hpp:57
#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
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: diagonal_stream_reference.hpp:94
constexpr size_t cols() const
Definition: stream.hpp:82
_elem_t< C > elem_t
Tensor's element type.
Definition: tensor.hpp:81
constexpr Traits::elem_t operator()(size_t i) const
Provides read only access to tensor elements.
Definition: diagonal_stream_reference.hpp:129
Definition: config.hpp:27
vector_traits< DiagonalStreamReference< E > > VectorTraits
Vector traits information for this type.
Definition: diagonal_stream_reference.hpp:47
constexpr DiagonalStreamReference(Stream< E > const &stream)
Constructs a new diagonal reference with the provided stream.
Definition: diagonal_stream_reference.hpp:75
Generic diagonal reference with read only access.
Definition: diagonal_stream_reference.hpp:30
constexpr size_t rows() const
Definition: diagonal_stream_reference.hpp:86
traits< DiagonalStreamReference< E > > Traits
Traits information for this type.
Definition: diagonal_stream_reference.hpp:32
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