Control Libraries 7.4.0
Loading...
Searching...
No Matches
dynamical_systems_bindings.cpp
1#include "dynamical_systems_bindings.hpp"
2
3#define STRINGIFY(x) #x
4#define MACRO_STRINGIFY(x) STRINGIFY(x)
5
6PYBIND11_MODULE(dynamical_systems, m) {
7 m.doc() = "Python bindings for control libraries dynamical_systems";
8
9 #ifdef MODULE_VERSION_INFO
10 m.attr("__version__") = MACRO_STRINGIFY(MODULE_VERSION_INFO);
11 #else
12 m.attr("__version__") = "dev";
13 #endif
14
15 py::module_::import("state_representation");
16
17 auto m_sub = m.def_submodule("exceptions", "Submodule for custom dynamical systems exceptions");
18 bind_exceptions(m_sub);
19 bind_ds_type(m);
20 bind_cartesian_ds(m);
21 bind_joint_ds(m);
22}
Systems of equations relating state variables to their derivatives.
Definition Circular.hpp:7