OpenKalman
traits.hpp
Go to the documentation of this file.
1 /* This file is part of OpenKalman, a header-only C++ library for
2  * Kalman filters and other recursive filters.
3  *
4  * Copyright (c) 2019-2024 Christopher Lee Ogden <ogden@gatech.edu>
5  *
6  * This Source Code Form is subject to the terms of the Mozilla Public
7  * License, v. 2.0. If a copy of the MPL was not distributed with this
8  * file, You can obtain one at https://mozilla.org/MPL/2.0/.
9  */
10 
16 #ifndef OPENKALMAN_LINEAR_ALGEBRA_TRAITS_HPP
17 #define OPENKALMAN_LINEAR_ALGEBRA_TRAITS_HPP
18 
19 #include <type_traits>
20 
21 // basic traits
22 
23 #include "scalar_type_of.hpp"
24 #include "index_count.hpp"
26 #include "index_dimension_of.hpp"
27 #include "dynamic_index_count.hpp"
28 #include "max_tensor_order.hpp"
29 
30 #include "nested_object_of.hpp"
31 
32 // constants:
33 
34 #include "constant_coefficient.hpp"
36 
37 // special matrices:
38 
39 #include "triangle_type_of.hpp"
41 
42 // other:
43 
44 #include "layout_of.hpp"
45 
46 
47 #endif //OPENKALMAN_LINEAR_ALGEBRA_TRAITS_HPP
Definition for layout_of.
Definition for vector_space_descriptor_of.
Definition for scalar_type_of.
Definition for constant_coefficient.
Definition for dynamic_index_count.
Definition for hermitian_adapter_type_of.
Definition for index_dimension_of.
Definition for max_tensor_order.
Definition for index_count.
Definition for triangle_type_of.
Definition for nested_object_of.
Definition for constant_diagonal_coefficient.