WPILibC++ 2027.0.0-alpha-3
Loading...
Searching...
No Matches
dynamics_type.hpp
Go to the documentation of this file.
1// Copyright (c) Sleipnir contributors
2
3#pragma once
4
5#include <stdint.h>
6
7namespace slp {
8
9/**
10 * Enum describing a type of system dynamics constraints.
11 */
12enum class DynamicsType : uint8_t {
13 /// The dynamics are a function in the form dx/dt = f(t, x, u).
15 /// The dynamics are a function in the form xₖ₊₁ = f(t, xₖ, uₖ).
17};
18
19} // namespace slp
Definition expression_graph.hpp:11
DynamicsType
Enum describing a type of system dynamics constraints.
Definition dynamics_type.hpp:12
@ DISCRETE
The dynamics are a function in the form xₖ₊₁ = f(t, xₖ, uₖ).
@ EXPLICIT_ODE
The dynamics are a function in the form dx/dt = f(t, x, u).