OpenKalman
eigen-tensor.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) 2023 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 
25 #ifndef OPENKALMAN_EIGEN_TENSOR_HPP
26 #define OPENKALMAN_EIGEN_TENSOR_HPP
27 
28 #ifdef __GNUC__
29 #pragma GCC diagnostic push
30 #pragma GCC diagnostic ignored "-Warray-bounds"
31 #endif
32 
34 
35 #ifdef __GNUC__
36 #pragma GCC diagnostic pop
37 #endif
38 
40 
42 
44 
45 #include "linear-algebra/interfaces/eigen-tensor/native-traits/eigen-native-tensor-traits.hpp"
46 #include "linear-algebra/interfaces/eigen-tensor/native-evaluators/LibraryWrapper.hpp"
47 
48 #include "linear-algebra/interfaces/eigen-tensor/details/EigenTensorAdapterBase.hpp"
49 
50 
51 #endif //OPENKALMAN_EIGEN_TENSOR_HPP
Forward declarations for OpenKalman&#39;s Eigen Tensor module interface.
Header file for traits for Eigen tensor classes.
The comprehensive header file for OpenKalman&#39;s interface to the Eigen3 library.
Definition of make_eigen_wrapper function.