1.1 KiB
Executable File
1.1 KiB
Executable File
Programming exercise
Prerequisites:
- UNIX-like OS, or WSL for Windows
gcc,g++>= 11CMake>= 3.19 1pythonand the packagematplotlib(alternatively, you can usepipenv2 and the providedPipfile)
Usage
Implement your solution in src/, and describe it in description.md.
You can also adjust the evaluation code in framework/ and eval.py, if you want.
- Compile your code using
cmake --preset release
cmake --build --preset release
- Run the experiment via
eval.py run. The output will be written toresult.txt.
python ./eval.py run result.txt
# or
cmake --build --preset release --target run
- Create a plot via
eval.py plot. This will create a PDF file namedplot.pdf.
python ./eval.py plot results.txt
# or
cmake --build --preset release --target plot
-
Describe your solution in
description.md. -
Using
cmake, createsubmission.zip, which will contain your source code, description and plots.
cmake --build --preset release --target submission