ROTGEN - Runtime Overlay for EIGEN
Find a file
2025-08-13 17:43:57 +02:00
cmake Implements map and ref for both static & dynamic mode 2025-08-13 17:43:57 +02:00
include/rotgen Implements map and ref for both static & dynamic mode 2025-08-13 17:43:57 +02:00
src Implements map and ref for both static & dynamic mode 2025-08-13 17:43:57 +02:00
test Implements map and ref for both static & dynamic mode 2025-08-13 17:43:57 +02:00
.gitignore First batch of rotgen implementation: constructors, basic infrastructure 2025-05-16 16:01:17 +02:00
.gitlab-ci.yml Implement fixed size options for rotgen containers 2025-07-20 20:23:51 +02:00
CMakeLists.txt Implements map and ref for both static & dynamic mode 2025-08-13 17:43:57 +02:00
CMakePresets.json Implements map and ref for both static & dynamic mode 2025-08-13 17:43:57 +02:00
LICENSE.md Infrastructure de base 2025-05-07 17:01:58 +02:00
README.md Update readme 2025-07-22 19:29:35 +02:00

Rotgen - EIGEN QoL Wrapper

Rotgen is a C++20 library that wraps EIGEN and adds some Quality of Life options :

  • Limitation of compile-time by forcing the library to use precompiled code and dynamic settings.
  • Limitation of compile-time by de-activating the Expression Tempalte layer.
  • Limitation of unrolling by forcing containers to fall back to dynamic storage above a given size.

Rotgen depends on Eigen v3.4.0.

Installation

TODO

Roadmap

TODO

Project status

  • 07/2025 - Beta version in progress.

License

Rotgen is licensed under the Boost Software License

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.