7 #ifndef LIN_CORE_TRAITS_VECTOR_HPP_ 8 #define LIN_CORE_TRAITS_VECTOR_HPP_ 13 #include <type_traits> 34 has_fixed_rows<C>::value &&
35 (_dims<C>::rows == 1) &&
36 (_dims<C>::max_cols > 1)
55 has_fixed_cols<C>::value &&
56 (_dims<C>::cols == 1) &&
57 (_dims<C>::max_rows > 1)
75 template <
class C,
typename =
void>
79 struct _vector_dims<C, std::enable_if_t<is_row_vector<C>::value>> {
85 struct _vector_dims<C, std::enable_if_t<is_col_vector<C>::value>> {
105 "lin::internal::vector_traits can only be populated for vector types");
108 typedef _elem_t<C>
elem_t;
129 template <
class C,
class D>
131 (_vector_dims<C>::length == _vector_dims<D>::length) &&
132 (_vector_dims<C>::max_length == _vector_dims<D>::max_length)
149 template <
class... Cs>
158 "lin::internal::have_same_vector_dimensions cannot be passed a non-vector type");
161 template <
class C,
class... Cs>
163 :
conjunction<_have_same_vector_dimensions<C, Cs>...> { };
180 template <
class... Cs>
182 have_same_elements<Cs...>, have_same_vector_dimensions<Cs...>
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
Definition: vector.hpp:130
Tests if a tensor type is a column vector.
Definition: vector.hpp:54
Definition: config.hpp:27
_eval_t< C > eval_t
Vector's evaluation type.
Definition: vector.hpp:114
Definition: vector.hpp:76
_elem_t< C > elem_t
Vector'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's compile time dimensions.
Definition: tensor.hpp:60