lin
diagonal_mapping_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_MAPPING_REFERENCE_HPP_
8 #define LIN_REFERENCES_DIAGONAL_MAPPING_REFERENCE_HPP_
9 
10 #include "../core.hpp"
11 
12 namespace lin {
13 namespace internal {
14 
29 template <class E>
30 class DiagonalMappingReference : public Mapping<DiagonalMappingReference<E>> {
31  static_assert(is_vector<DiagonalMappingReference<E>>::value,
32  "DiagonalMappingReference<...> 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  Mapping<E> &_mapping;
51 
52  protected:
54 
55  public:
58  using Mapping<DiagonalMappingReference<E>>::operator();
59  using Mapping<DiagonalMappingReference<E>>::operator=;
60 
61  constexpr DiagonalMappingReference() = delete;
62  constexpr DiagonalMappingReference(DiagonalMappingReference<E> const &) = default;
64  constexpr DiagonalMappingReference<E> &operator=(DiagonalMappingReference<E> const &) = default;
65  constexpr DiagonalMappingReference<E> &operator=(DiagonalMappingReference<E> &&) = default;
66 
78  : _mapping(mapping) {
79  LIN_ASSERT(mapping.rows() == mapping.cols());
80  }
81 
88  constexpr size_t rows() const {
89  return _mapping.rows();
90  }
91 
96  constexpr size_t cols() const {
97  return size_t(1);
98  }
99 
112  constexpr typename Traits::elem_t &operator()(size_t i, size_t j) {
113  LIN_ASSERT(i >= 0 && i < rows());
114  LIN_ASSERT(j >= 0 && j < rows());
115 
116  return _mapping(i, i);
117  }
118 
131  constexpr typename Traits::elem_t &operator()(size_t i) {
132  LIN_ASSERT(i >= 0 && i < size());
133 
134  return _mapping(i, i);
135  }
136 };
137 
138 template <class E>
140  typedef _elem_t<E> type;
141 };
142 
143 template <class E>
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;
149 };
150 } // namespace internal
151 } // namespace lin
152 
153 #endif
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&#39;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&#39;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&#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