7 #ifndef LIN_GENERATORS_STREAM_DIAGONAL_HPP_ 8 #define LIN_GENERATORS_STREAM_DIAGONAL_HPP_ 10 #include "../core.hpp" 35 "StreamDiagonal must have square, matrix traits");
37 "Backing type for a StreamDiagonal must have vector traits");
80 constexpr
size_t rows()
const {
81 return _stream.
size();
88 constexpr
size_t cols()
const {
89 return _stream.
size();
130 return (*
this)(i /
cols(), i %
cols());
136 typedef _elem_t<E> type;
Tensor interface providing read only access to elements.
Definition: stream.hpp:43
traits< StreamDiagonal< E > > Traits
Traits information for this type.
Definition: stream_diagonal.hpp:35
constexpr size_t size() const
Definition: stream.hpp:90
constexpr size_t cols() const
Definition: stream_diagonal.hpp:88
Provides a tensor type's element type.
Definition: tensor.hpp:28
constexpr Traits::elem_t operator()(size_t i) const
Provides read only access to tensor elements.
Definition: stream_diagonal.hpp:127
Collection of compile time information about a specific tensor class.
Definition: tensor.hpp:75
constexpr StreamDiagonal< E > & derived()
Definition: stream.hpp:57
constexpr size_t rows() const
Definition: stream_diagonal.hpp:80
#define LIN_ASSERT(x)
Asserts the condition x when assertions are enabled within lin.
Definition: config.hpp:22
Tensor stream where all elements are zeros expects the elements on on the diagonal specified by an un...
Definition: stream_diagonal.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
Logical AND operation for template metaprogramming.
Definition: utilities.hpp:54
constexpr Traits::elem_t operator()(size_t i, size_t j) const
Provides read only access to tensor elements.
Definition: stream_diagonal.hpp:105
constexpr StreamDiagonal(Stream< E > const &stream)
Constructs a new diagonal stream from the provided vector stream.
Definition: stream_diagonal.hpp:73
Tests if a tensor type is a vector.
Definition: vector.hpp:73
_elem_t< C > elem_t
Tensor's element type.
Definition: tensor.hpp:81
Definition: config.hpp:27
Definition: vector.hpp:76
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