lin
vector.hpp
Go to the documentation of this file.
1 // vim: set tabstop=2:softtabstop=2:shiftwidth=2:expandtab
2 
7 #ifndef LIN_CORE_TRAITS_VECTOR_HPP_
8 #define LIN_CORE_TRAITS_VECTOR_HPP_
9 
10 #include "tensor.hpp"
11 #include "utilities.hpp"
12 
13 #include <type_traits>
14 
15 namespace lin {
16 namespace internal {
17 
32 template <class C>
33 struct is_row_vector : std::integral_constant<bool, (
34  has_fixed_rows<C>::value &&
35  (_dims<C>::rows == 1) &&
36  (_dims<C>::max_cols > 1)
37  )> { };
38 
53 template <class C>
54 struct is_col_vector : std::integral_constant<bool, (
55  has_fixed_cols<C>::value &&
56  (_dims<C>::cols == 1) &&
57  (_dims<C>::max_rows > 1)
58  )> { };
59 
72 template <class C>
73 struct is_vector : disjunction<is_row_vector<C>, is_col_vector<C>> { };
74 
75 template <class C, typename = void>
76 struct _vector_dims;
77 
78 template <class C>
79 struct _vector_dims<C, std::enable_if_t<is_row_vector<C>::value>> {
80  static constexpr size_t length = _dims<C>::cols;
81  static constexpr size_t max_length = _dims<C>::max_cols;
82 };
83 
84 template <class C>
85 struct _vector_dims<C, std::enable_if_t<is_col_vector<C>::value>> {
86  static constexpr size_t length = _dims<C>::rows;
87  static constexpr size_t max_length = _dims<C>::max_rows;
88 };
89 
102 template <class C>
104  static_assert(is_vector<C>::value,
105  "lin::internal::vector_traits can only be populated for vector types");
108  typedef _elem_t<C> elem_t;
114  typedef _eval_t<C> eval_t;
120  static constexpr size_t length = _vector_dims<C>::length;
126  static constexpr size_t max_length = _vector_dims<C>::max_length;
127 };
128 
129 template <class C, class D>
130 struct _have_same_vector_dimensions : std::integral_constant<bool, (
131  (_vector_dims<C>::length == _vector_dims<D>::length) &&
132  (_vector_dims<C>::max_length == _vector_dims<D>::max_length)
133  )> { };
134 
149 template <class... Cs>
151 
152 template <>
153 struct have_same_vector_dimensions<> : std::true_type { };
154 
155 template <class C>
156 struct have_same_vector_dimensions<C> : std::true_type {
157  static_assert(is_vector<C>::value,
158  "lin::internal::have_same_vector_dimensions cannot be passed a non-vector type");
159 };
160 
161 template <class C, class... Cs>
163  : conjunction<_have_same_vector_dimensions<C, Cs>...> { };
164 
180 template <class... Cs>
182  have_same_elements<Cs...>, have_same_vector_dimensions<Cs...>
183  > { };
184 
185 } // namespace internal
186 } // namespace lin
187 
188 #endif
Collection of compile time information describing a tensor type which is deemed a vector...
Definition: vector.hpp:103
Logical OR operation for template metaprogramming.
Definition: utilities.hpp:74
Tests if a set of vector types all have the same vector traits.
Definition: vector.hpp:181
Tests if a set of vector types all have the same dimensions.
Definition: vector.hpp:150
Logical AND operation for template metaprogramming.
Definition: utilities.hpp:54
Tests if a tensor type is a vector.
Definition: vector.hpp:73
Tests if a tensor type is a column vector.
Definition: vector.hpp:54
Definition: config.hpp:27
_eval_t< C > eval_t
Vector&#39;s evaluation type.
Definition: vector.hpp:114
Definition: vector.hpp:76
_elem_t< C > elem_t
Vector&#39;s element type.
Definition: vector.hpp:105
Tests if a tensor type is a row vector.
Definition: vector.hpp:33
Provides a specific tensor type&#39;s compile time dimensions.
Definition: tensor.hpp:60