lin
references.hpp
Go to the documentation of this file.
1 // vim: set tabstop=2:softtabstop=2:shiftwidth=2:expandtab
2 
3 //
4 // MIT License
5 //
6 // Copyright (c) 2020 kylekrol
7 // Copyright (c) 2020 Pathfinder for Autonomous Navigation (PAN)
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining a copy
10 // of this software and associated documentation files (the "Software"), to deal
11 // in the Software without restriction, including without limitation the rights
12 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 // copies of the Software, and to permit persons to whom the Software is
14 // furnished to do so, subject to the following conditions:
15 //
16 // The above copyright notice and this permission notice shall be included in
17 // all copies or substantial portions of the Software.
18 //
19 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25 // SOFTWARE.
26 //
27 
95 #ifndef LIN_REFERENCES_HPP_
96 #define LIN_REFERENCES_HPP_
97 
98 #include "core.hpp"
105 
106 #include <type_traits>
107 
108 namespace lin {
109 namespace internal {
110 
123 template <class C, class D, typename = void>
125 
126 template <class C, class D>
127 using mapping_reference_t = typename mapping_reference<C, D>::type;
128 
129 template <class C, class D>
130 struct mapping_reference<C, D, std::enable_if_t<conjunction<
131  is_matrix<C>, have_same_elements<C, D>>::value>> {
133 };
134 
135 template <class C, class D>
136 struct mapping_reference<C, D, std::enable_if_t<conjunction<
137  is_col_vector<C>, have_same_elements<C, D>>::value>> {
139 };
140 
141 template <class C, class D>
142 struct mapping_reference<C, D, std::enable_if_t<conjunction<
143  is_row_vector<C>, have_same_elements<C, D>>::value>> {
145 };
146 
159 template <class C, class D, typename = void>
161 
162 template <class C, class D>
163 using stream_reference_t = typename stream_reference<C, D>::type;
164 
165 template <class C, class D>
166 struct stream_reference<C, D, std::enable_if_t<conjunction<
167  is_matrix<C>, have_same_elements<C, D>>::value>> {
169 };
170 
171 template <class C, class D>
172 struct stream_reference<C, D, std::enable_if_t<conjunction<
173  is_col_vector<C>, have_same_elements<C, D>>::value>> {
175 };
176 
177 template <class C, class D>
178 struct stream_reference<C, D, std::enable_if_t<conjunction<
179  is_row_vector<C>, have_same_elements<C, D>>::value>> {
181 };
182 } // namespace internal
183 
205 template <class C, class D, typename =
206  std::enable_if_t<internal::has_traits<C>::value>>
207 constexpr auto ref(internal::Mapping<D> &mapping, size_t i, size_t j) {
208  return internal::mapping_reference_t<C, D>(mapping, i, j);
209 }
210 
237 template <class C, class D, typename = std::enable_if_t<internal::conjunction<
239 constexpr auto ref(internal::Mapping<D> &mapping, size_t i, size_t j, size_t n) {
240  return internal::mapping_reference_t<C, D>(mapping, i, j, n);
241 }
242 
271 template <class C, class D, typename =
272  std::enable_if_t<internal::has_traits<C>::value>>
273 constexpr auto ref(internal::Mapping<D> &mapping, size_t i, size_t j, size_t r, size_t c) {
274  return internal::mapping_reference_t<C, D>(mapping, i, j, r, c);
275 }
276 
298 template <class D>
299 constexpr auto col(internal::Mapping<D> &mapping, size_t j) {
300  typedef typename D::Traits::elem_t Elem;
301  constexpr size_t Rows = D::Traits::rows;
302  constexpr size_t MaxRows = D::Traits::max_rows;
303  typedef std::conditional_t<internal::is_row_vector<D>::value, Matrix<Elem, 1, 1>, Vector<Elem, Rows, MaxRows>> T;
304 
305  return ref<T>(mapping, 0, j, mapping.rows(), 1);
306 }
307 
329 template <class D>
330 constexpr auto row(internal::Mapping<D> &mapping, size_t i) {
331  typedef typename D::Traits::elem_t Elem;
332  constexpr size_t Cols = D::Traits::cols;
333  constexpr size_t MaxCols = D::Traits::max_cols;
334  typedef std::conditional_t<internal::is_col_vector<D>::value, Matrix<Elem, 1, 1>, RowVector<Elem, Cols, MaxCols>> T;
335 
336  return ref<T>(mapping, i, 0, 1, mapping.cols());
337 }
338 
357 template <class D, typename = std::enable_if_t<internal::conjunction<
359 constexpr auto diag(internal::Mapping<D> &mapping) {
361 }
362 
384 template <class C, class D, typename =
385  std::enable_if_t<internal::has_traits<C>::value>>
386 constexpr auto ref(internal::Stream<D> const &stream, size_t i, size_t j) {
387  return internal::stream_reference_t<C, D>(stream, i, j);
388 }
389 
416 template <class C, class D, typename = std::enable_if_t<internal::conjunction<
417  internal::has_traits<C>, internal::is_vector<C>>::value>>
418 constexpr auto ref(internal::Stream<D> const &stream, size_t i, size_t j, size_t n) {
419  return internal::stream_reference_t<C, D>(stream, i, j, n);
420 }
421 
450 template <class C, class D, typename =
451  std::enable_if_t<internal::has_traits<C>::value>>
452 constexpr auto ref(internal::Stream<D> const &stream, size_t i, size_t j, size_t r, size_t c) {
453  return internal::stream_reference_t<C, D>(stream, i, j, r, c);
454 }
455 
477 template <class D>
478 constexpr auto col(internal::Stream<D> const &stream, size_t j) {
479  typedef typename D::Traits::elem_t Elem;
480  constexpr size_t Rows = D::Traits::rows;
481  constexpr size_t MaxRows = D::Traits::max_rows;
482  typedef std::conditional_t<internal::is_row_vector<D>::value, Matrix<Elem, 1, 1>, Vector<Elem, Rows, MaxRows>> T;
483 
484  return ref<T>(stream, 0, j, stream.rows(), 1);
485 }
486 
508 template <class D>
509 constexpr auto row(internal::Stream<D> const &stream, size_t i) {
510  typedef typename D::Traits::elem_t Elem;
511  constexpr size_t Cols = D::Traits::cols;
512  constexpr size_t MaxCols = D::Traits::max_cols;
513  typedef std::conditional_t<internal::is_col_vector<D>::value, Matrix<Elem, 1, 1>, RowVector<Elem, Cols, MaxCols>> T;
514 
515  return ref<T>(stream, i, 0, 1, stream.cols());
516 }
517 
536 template <class D, typename = std::enable_if_t<internal::conjunction<
537  internal::is_matrix<D>, internal::is_square<D>>::value>>
538 constexpr auto diag(internal::Stream<D> const &stream) {
540 }
541 } // namespace lin
542 
543 #endif
constexpr auto col(internal::Stream< D > const &stream, size_t j)
Creates a stream reference of a particular column of a given tensor.
Definition: references.hpp:478
Tensor interface providing read only access to elements.
Definition: stream.hpp:43
Generic vector reference with read only access.
Definition: vector_stream_reference.hpp:35
Tensor interface providing read and write access to elements.
Definition: mapping.hpp:39
Generic vector.
Definition: vector.hpp:33
constexpr auto diag(internal::Stream< D > const &stream)
Creates a diagonal stream reference from the given stream.
Definition: references.hpp:538
Generic matrix.
Definition: matrix.hpp:35
Generic matrix reference with read and write access.
Definition: matrix_mapping_reference.hpp:37
Generic row vector reference with read only access.
Definition: vector_stream_reference.hpp:130
Generic row vector reference with read and write access.
Definition: vector_mapping_reference.hpp:130
Generic row vector.
Definition: vector.hpp:131
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: stream.hpp:82
constexpr auto ref(internal::Stream< D > const &stream, size_t i, size_t j, size_t r, size_t c)
Creates a stream reference with the provided dimensions.
Definition: references.hpp:452
Generic matrix reference with read-only access.
Definition: matrix_stream_reference.hpp:37
Definition: references.hpp:160
constexpr auto row(internal::Stream< D > const &stream, size_t i)
Creates a stream reference of a particular row of a given tensor.
Definition: references.hpp:509
Definition: config.hpp:27
Generic diagonal reference with read and write access.
Definition: diagonal_mapping_reference.hpp:30
Definition: references.hpp:124
Generic diagonal reference with read only access.
Definition: diagonal_stream_reference.hpp:30
Generic vector reference with read and write access.
Definition: vector_mapping_reference.hpp:35
Tests if a type has traits.
Definition: tensor.hpp:158