![]() |
- 3.0.2 Documentation
|
We very much welcome external developers. Small changes and contributions can be made via pull requests. If you have a larger enhancement, bug fix or other contribution in mind, feel free to first create an issue to align the development with ongoing activities.
We support clang-format and provide a style template to automatically format the source code. Please refer to the clang-format style sheet in the package root directory for our conventions.
Example command for running clang-format:
CT relies on explicit template instantiation, that means precompilation of the library for user-specified state and control dimensions. While CT handles things slightly different, please see this post to learn more about the subject. The basic idea is that for all templated class there is
The template file has the following placeholders
Placeholder | Description |
---|---|
STATE_DIM_PRESPEC | The state dimension |
CONTROL_DIM_PRESPEC | The control dimension |
SCALAR_PRESPEC | The scalar type |
DOUBLE_OR_FLOAT | "true" if the scalar type is double or float |
POS_DIM_PRESPEC | Position dimension for symplectic integrator (default: 0) |
VEL_DIM_PRESPEC | Velocity dimension for symplectic integrator (default: 0) |
You can use these placeholders in the code
The parser in the CMakeLists.txt would then create the following code out of this (for STATE_DIM=3, CONTROL_DIM=2, SCALAR=double)