OpenKalman
mdspan-library.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) 2025-2026 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_INTERFACES_MDSPAN_LIBRARY_HPP
17 #define OPENKALMAN_INTERFACES_MDSPAN_LIBRARY_HPP
18 
19 #include "basics/basics.hpp"
20 #include "mdspan-object.hpp"
25 
26 namespace OpenKalman::interface
27 {
33  template<typename T, typename Extents, typename LayoutPolicy, typename AccessorPolicy>
34  struct library_interface<stdex::mdspan<T, Extents, LayoutPolicy, AccessorPolicy>>
35  {
36  };
37 
38 }
39 
40 
41 #endif
Definition: basics.hpp:41
An interface to various routines from the linear algebra library associated with indexible object T...
Definition: library_interface.hpp:42
Forward declaration of library_interface, which must be defined for all objects used in OpenKalman...
Definition of object_traits for std::mdspan.
Basic definitions for OpenKalman as a whole.