- Scheduler export: Properly handle models with end components. Added export in `.json` format.
- CMake: Search for Gurobi prefers new versions
- CMake: We no longer ship xerces-c. If xerces-c is not found on the system, storm-gspn will not be able to parse xml-based GSPN formats
- CMake: Added option `STORM_LOAD_QVBS` to automatically download the quantitative verification benchmark set.
- Eigen library: The source code of Eigen is no longer included but downloaded from an external repository instead. Incremented Eigen version to 3.3.7 which fixes a compilation issue with recent XCode versions.
- Tests: Enabled tests for permissive schedulers
- `storm-counterexamples`: fix when computing multiple counterexamples in debug mode
@ -66,7 +66,9 @@ set(GUROBI_ROOT "" CACHE STRING "A hint to the root directory of Gurobi (optiona
set(Z3_ROOT""CACHESTRING"A hint to the root directory of Z3 (optional).")
set(CUDA_ROOT""CACHESTRING"The hint to the root directory of CUDA (optional).")
set(MSAT_ROOT""CACHESTRING"The hint to the root directory of MathSAT (optional).")
set(STORM_QVBS_ROOT""CACHESTRING"The hint to the root directory of the Quantitative Verification Benchmark Set (QVBS) (optional).")
option(STORM_LOAD_QVBS"Sets whether the Quantitative Verification Benchmark Set (QVBS) should be downloaded."OFF)
set(STORM_QVBS_ROOT""CACHESTRING"The root directory of the Quantitative Verification Benchmark Set (QVBS) in case it should not be downloaded (optional).")
MARK_AS_ADVANCED(STORM_QVBS_ROOT)
set(ADDITIONAL_INCLUDE_DIRS""CACHESTRING"Additional directories added to the include directories.")
set(ADDITIONAL_LINK_DIRS""CACHESTRING"Additional directories added to the link directories.")