OpenKalman
untyped_adapter.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-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 
16 #ifndef OPENKALMAN_UNTYPED_ADAPTER_HPP
17 #define OPENKALMAN_UNTYPED_ADAPTER_HPP
18 
19 
20 namespace OpenKalman
21 {
27  template<typename T>
28 #ifdef __cpp_concepts
29  concept untyped_adapter =
30 #else
31  constexpr bool untyped_adapter =
32 #endif
33  internal::diagonal_expr<T> or internal::hermitian_expr<T> or internal::triangular_expr<T>;
34 
35 
36 } // namespace OpenKalman
37 
38 
39 #endif //OPENKALMAN_UNTYPED_ADAPTER_HPP
The root namespace for OpenKalman.
Definition: basics.hpp:34
constexpr bool untyped_adapter
Specifies that T is an untyped adapter expression.
Definition: untyped_adapter.hpp:31