lin
views.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 
77 #ifndef LIN_VIEWS_HPP_
78 #define LIN_VIEWS_HPP_
79 
80 #include "core.hpp"
83 #include "views/matrix_view.hpp"
84 #include "views/vector_view.hpp"
85 
86 #include <type_traits>
87 
88 namespace lin {
89 namespace internal {
90 
101 template <class C, typename = void>
102 struct view { };
103 
104 template <class C>
105 using view_t = typename view<C>::type;
106 
107 template <class C>
108 struct view<C, std::enable_if_t<is_matrix<C>::value>> {
110 };
111 
112 template <class C>
113 struct view<C, std::enable_if_t<is_col_vector<C>::value>> {
115 };
116 
117 template <class C>
118 struct view<C, std::enable_if_t<is_row_vector<C>::value>> {
120 };
121 
132 template <class C, typename = void>
133 struct const_view { };
134 
135 template <class C>
136 using const_view_t = typename const_view<C>::type;
137 
138 template <class C>
139 struct const_view<C, std::enable_if_t<is_matrix<C>::value>> {
141 };
142 
143 template <class C>
144 struct const_view<C, std::enable_if_t<is_col_vector<C>::value>> {
146 };
147 
148 template <class C>
149 struct const_view<C, std::enable_if_t<is_row_vector<C>::value>> {
151 };
152 } // namespace internal
153 
171 template <class C, typename = std::enable_if_t<internal::has_traits<C>::value>>
172 constexpr auto view(typename C::Traits::elem_t *elems) {
173  return internal::view_t<C>(elems);
174 }
175 
193 template <class C, typename = std::enable_if_t<internal::conjunction<
195 constexpr auto view(typename C::Traits::elem_t *elems, size_t n) {
196  return internal::view_t<C>(elems, n);
197 }
198 
218 template <class C, typename = std::enable_if_t<internal::has_traits<C>::value>>
219 constexpr auto view(typename C::Traits::elem_t *elems, size_t r, size_t c) {
220  return internal::view_t<C>(elems, r, c);
221 }
222 
240 template <class C, typename = std::enable_if_t<internal::has_traits<C>::value>>
241 constexpr auto view(typename C::Traits::elem_t const *elems) {
242  return internal::const_view_t<C>(elems);
243 }
244 
262 template <class C, typename = std::enable_if_t<internal::conjunction<
263  internal::has_traits<C>, internal::is_vector<C>>::value>>
264 constexpr auto view(typename C::Traits::elem_t const *elems, size_t n) {
265  return internal::const_view_t<C>(elems, n);
266 }
267 
287 template <class C, typename = std::enable_if_t<internal::has_traits<C>::value>>
288 constexpr auto view(typename C::Traits::elem_t const *elems, size_t r, size_t c) {
289  return internal::const_view_t<C>(elems, r, c);
290 }
291 } // namespace lin
292 
293 #endif
Generic vector view.
Definition: vector_view.hpp:31
constexpr auto view(typename C::Traits::elem_t const *elems, size_t r, size_t c)
Creates a constant tensor view with the provided dimensions.
Definition: views.hpp:288
Generic matrix view.
Definition: matrix_view.hpp:34
Definition: views.hpp:102
Generic constant row vector view.
Definition: const_vector_view.hpp:115
Generic row vector view.
Definition: vector_view.hpp:116
Logical AND operation for template metaprogramming.
Definition: utilities.hpp:54
Tests if a tensor type is a vector.
Definition: vector.hpp:73
Definition: config.hpp:27
Generic constant vector view.
Definition: const_vector_view.hpp:31
Definition: views.hpp:133
Tests if a type has traits.
Definition: tensor.hpp:158
Generic constant matrix view.
Definition: const_matrix_view.hpp:33