You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[ ] Every addressed issue is linked (use the "Closes #ISSUE" keyword below)
22
-
-[ ] New code adheres to [coding guidelines](https://memilio.readthedocs.io/en/latest/development.html#coding-guidelines)
23
-
-[ ] No large data files have been added (files should in sum not exceed 100 KB, avoid PDFs, Word docs, etc.)
24
-
-[ ] Tests are added for new functionality and a local test run was successful (with and without OpenMP)
25
-
-[ ] Appropriate **documentation within the code** (Doxygen) for new functionality has been added in the code
26
-
-[ ] Appropriate **external documentation** (ReadTheDocs) for new functionality has been added to the online documentation
27
-
-[ ] Proper attention to licenses, especially no new third-party software with conflicting license has been added
21
+
-[ ] Every addressed issue is linked (use the "Closes #ISSUE" keyword below).
22
+
-[ ] New code adheres to [coding guidelines](https://memilio.readthedocs.io/en/latest/development.html#coding-guidelines).
23
+
-[ ] No large data files have been added (files should in sum not exceed 100 KB, avoid PDFs, Word docs, etc.).
24
+
-[ ] Tests are added for new functionality and a local test run was successful (with and without OpenMP).
25
+
-[ ] Appropriate **documentation within the code** (Doxygen) for new functionality has been added in the code.
26
+
-[ ] Appropriate **external documentation** (ReadTheDocs) for new functionality has been added to the online documentation and checked in the preview.
27
+
-[ ] Proper attention to licenses, especially no new third-party software with conflicting license has been added.
28
28
-[ ] (For ABM development) Checked [benchmark results](https://memilio.readthedocs.io/en/latest/development.html#agent-based-model-development) and ran and posted a local test above from before and after development to ensure performance is monitored.
29
29
30
30
### Checks by code reviewer(s)
31
31
32
-
-[ ] Corresponding issue(s) is/are linked and addressed
33
-
-[ ] Code is clean of development artifacts (no deactivated or commented code lines, no debugging printouts, etc.)
34
-
-[ ] Appropriate **unit tests** have been added, CI passes, code coverage and performance is acceptable (did not decrease)
35
-
-[ ] No large data files added in the whole history of commits(files should in sum not exceed 100 KB, avoid PDFs, Word docs, etc.)
32
+
-[ ] Corresponding issue(s) is/are linked and addressed.
33
+
-[ ] Code is clean of development artifacts (no deactivated or commented code lines, no debugging printouts, etc.).
34
+
-[ ] Appropriate **unit tests** have been added, CI passes, code coverage and performance is acceptable (did not decrease).
35
+
-[ ] No large data files added in the whole history of commits(files should in sum not exceed 100 KB, avoid PDFs, Word docs, etc.).
36
36
-[ ] On merge, add 2-5 lines with the changes (main added features, changed items, or corrected bugs) to the merge-commit-message. This can be taken from the **briefly-list-the-changes** above (best case) or the separate commit messages (worst case).
Copy file name to clipboardExpand all lines: cpp/README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,12 +53,13 @@ Options can be specified with `cmake .. -D<OPTION>=<VALUE>` or by editing the `b
53
53
-`MEMILIO_BUILD_EXAMPLES`: build the example applications in the examples directory, ON or OFF, default ON.
54
54
-`MEMILIO_BUILD_MODELS`: build the separate model libraries in the models directory, ON or OFF, default ON.
55
55
-`MEMILIO_BUILD_SIMULATIONS`: build the simulation applications in the simulations directory, ON or OFF, default ON.
56
-
-`MEMILIO_BUILD_SBML_MODELS`: build the SBML importer and imported models, i.e. everythin in the folder `sbml_model_generation`, ON or OFF, default ON.
57
56
-`MEMILIO_USE_BUNDLED_SPDLOG/_BOOST/_EIGEN/_JSONCPP`: use the corresponding dependency bundled with this project, ON or OFF, default ON.
58
57
-`MEMILIO_BUILD_BENCHMARKS`: build the benchmarks for this project, ON or OFF, default OFF.
59
58
-`MEMILIO_SANITIZE_ADDRESS/_UNDEFINED`: compile with specified sanitizers to check correctness, ON or OFF, default OFF.
60
59
-`MEMILIO_ENABLE_OPENMP`: compile MEmilio with multithreading using OpenMP, ON or OFF, default OFF.
61
60
-`MEMILIO_ENABLE_MPI`: compile MEmilio with distributed memory parallelization using MPI. ON or OFF, default OFF. Requires an MPI implementation to be installed on the system.
61
+
-`MEMILIO_ENABLE_HDF5`: build MEmilio with HDF5 IO support, ON or OFF, default ON. If OFF, HDF5 is not searched for and features like `save_result`/`read_result` are disabled.
62
+
-`MEMILIO_ENABLE_SBML`: build the SBML importer and imported models, i.e. everythin in the folder `sbml_model_generation`, ON or OFF, default OFF.
62
63
-`MEMILIO_ENABLE_WARNINGS`: enable compilation warnings (beyond those enabled in the compiler by default). ON or OFF, default ON.
63
64
-`MEMILIO_ENABLE_WARNINGS_AS_ERRORS`: compilation warnings are treated as compilation errors. ON or OFF, default ON.
64
65
-`MEMILIO_ENABLE_PROFILING`: compile with runtime profiling support. ON or OFF, default OFF. See [here](benchmarks/profiling.md) for information.
0 commit comments