OpenKalman
sized_pattern.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_COORDINATE_SIZED_PATTERN_HPP
17 #define OPENKALMAN_COORDINATE_SIZED_PATTERN_HPP
18 
20 #include "descriptor.hpp"
22 
23 namespace OpenKalman::patterns
24 {
28  template<typename T>
29 #ifdef __cpp_concepts
30  concept sized_pattern =
31 #else
32  inline constexpr bool sized_pattern =
33 #endif
34  descriptor<T> or (collections::sized<T> and descriptor_collection<T>);
35 
36 
37 }
38 
39 #endif
constexpr bool sized_pattern
An object describing the set of coordinates associated with a tensor index.
Definition: sized_pattern.hpp:32
The namespace for features relating to patterns::pattern object.
Definition: collection_compares_with.hpp:24
Definition for patterns::descriptor.
Inclusion file for collections.
Definition for patterns::descriptor_collection.