lin
stream_diagonal.hpp
Go to the documentation of this file.
1 // vim: set tabstop=2:softtabstop=2:shiftwidth=2:expandtab
2 
7 #ifndef LIN_GENERATORS_STREAM_DIAGONAL_HPP_
8 #define LIN_GENERATORS_STREAM_DIAGONAL_HPP_
9 
10 #include "../core.hpp"
11 
12 namespace lin {
13 namespace internal {
14 
32 template <class E>
33 class StreamDiagonal : public Stream<StreamDiagonal<E>> {
35  "StreamDiagonal must have square, matrix traits");
36  static_assert(is_vector<E>::value,
37  "Backing type for a StreamDiagonal must have vector traits");
38 
39  public:
45 
46  private:
47  Stream<E> const &_stream;
48 
49  protected:
51 
52  public:
55 
56  constexpr StreamDiagonal() = delete;
57  constexpr StreamDiagonal(StreamDiagonal<E> const &) = default;
58  constexpr StreamDiagonal(StreamDiagonal<E> &&) = default;
59  constexpr StreamDiagonal<E> &operator=(StreamDiagonal<E> const &) = default;
60  constexpr StreamDiagonal<E> &operator=(StreamDiagonal<E> &&) = default;
61 
73  constexpr StreamDiagonal(Stream<E> const &stream)
74  : _stream(stream) { }
75 
80  constexpr size_t rows() const {
81  return _stream.size();
82  }
83 
88  constexpr size_t cols() const {
89  return _stream.size();
90  }
91 
105  constexpr typename Traits::elem_t operator()(size_t i, size_t j) const {
106  LIN_ASSERT(0 <= i && i <= rows());
107  LIN_ASSERT(0 <= j && j <= cols());
108 
109  return i == j ? _stream(i) : typename Traits::elem_t(0);
110  }
111 
127  constexpr typename Traits::elem_t operator()(size_t i) const {
128  LIN_ASSERT(0 <= i && i <= size());
129 
130  return (*this)(i / cols(), i % cols());
131  }
132 };
133 
134 template <class E>
135 struct _elem<StreamDiagonal<E>> {
136  typedef _elem_t<E> type;
137 };
138 
139 template <class E>
140 struct _dims<StreamDiagonal<E>> {
141  static constexpr size_t rows = _vector_dims<E>::length;
142  static constexpr size_t cols = _vector_dims<E>::length;
143  static constexpr size_t max_rows = _vector_dims<E>::max_length;
144  static constexpr size_t max_cols = _vector_dims<E>::max_length;
145 };
146 } // namespace internal
147 } // namespace lin
148 
149 #endif
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&#39;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&#39;s element type.
Definition: tensor.hpp:81
Definition: config.hpp:27
Definition: vector.hpp:76
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