lin
diagonal_stream_reference.hpp
Go to the documentation of this file.
1 // vim: set tabstop=2:softtabstop=2:shiftwidth=2:expandtab
2 
7 #ifndef LIN_REFERENCES_DIAGONAL_STREAM_REFERENCE_HPP_
8 #define LIN_REFERENCES_DIAGONAL_STREAM_REFERENCE_HPP_
9 
10 #include "../core.hpp"
11 
12 namespace lin {
13 namespace internal {
14 
29 template <class E>
30 class DiagonalStreamReference : public Stream<DiagonalStreamReference<E>> {
31  static_assert(is_vector<DiagonalStreamReference<E>>::value,
32  "DiagonalStreamReference<...> types must have vector traits.");
33  static_assert(conjunction<is_matrix<E>, is_square<E>>::value,
34  "Underlying mapping for a diagonal reference must be a square matrix.");
35 
36  public:
42 
48 
49  private:
50  Stream<E> const &_stream;
51 
52  protected:
54 
55  public:
58 
59  constexpr DiagonalStreamReference() = delete;
60  constexpr DiagonalStreamReference(DiagonalStreamReference<E> const &) = default;
62  constexpr DiagonalStreamReference<E> &operator=(DiagonalStreamReference<E> const &) = default;
63  constexpr DiagonalStreamReference<E> &operator=(DiagonalStreamReference<E> &&) = default;
64 
75  constexpr DiagonalStreamReference(Stream<E> const &stream)
76  : _stream(stream) {
77  LIN_ASSERT(stream.rows() == stream.cols());
78  }
79 
86  constexpr size_t rows() const {
87  return _stream.rows();
88  }
89 
94  constexpr size_t cols() const {
95  return size_t(1);
96  }
97 
110  constexpr typename Traits::elem_t operator()(size_t i, size_t j) const {
111  LIN_ASSERT(i >= 0 && i < rows());
112  LIN_ASSERT(j >= 0 && j < cols());
113 
114  return _stream(i, i);
115  }
116 
129  constexpr typename Traits::elem_t operator()(size_t i) const {
130  LIN_ASSERT(i >= 0 && i < size());
131 
132  return _stream(i, i);
133  }
134 };
135 
136 template <class E>
138  typedef _elem_t<E> type;
139 };
140 
141 template <class E>
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;
147 };
148 } // namespace internal
149 } // namespace lin
150 
151 #endif
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&#39;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&#39;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&#39;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