You can find the online documentation here.
This is a C++ project with documentation using Doxygen+Sphinx+breathe. The project is built using CMake.
Install the dependencies:
conda env create -f environment.ymlThis will create a conda environment called cycles which you can activate with:
conda activate cyclesCheck the documentation for platform-specific details.
To build the project, create a build directory and run CMake from there:
mkdir build
cd build
cmake ..
cmake --build .The documentation will be generated in the build/docs/sphinx/index.html directory. Open the index.html file in a web browser to view it.
To clean the project, just remove the build directory:
rm -rf build