Browse Source

Merge branch 'master' into deterministicScheds

tempestpy_adaptions
Tim Quatmann 5 years ago
parent
commit
944c4a5fc3
  1. 2
      .gitignore
  2. 7
      CMakeLists.txt
  3. 2
      README.md

2
.gitignore

@ -36,7 +36,7 @@ obj/
CMakeFiles/ CMakeFiles/
CPackConfig.cmake CPackConfig.cmake
# The build Dir # The build Dir
*build*/
/*build*/
build//CMakeLists.txt build//CMakeLists.txt
/*.vcxproj /*.vcxproj
/*.filters /*.filters

7
CMakeLists.txt

@ -1,6 +1,13 @@
cmake_minimum_required (VERSION 3.2) cmake_minimum_required (VERSION 3.2)
cmake_policy(VERSION 3.2) cmake_policy(VERSION 3.2)
# When searching for packages, we would like to first search in prefixes specified by <PackageName>_ROOT.
# However, this behavior is only supported since CMake 3.12.
if(POLICY CMP0074)
cmake_policy(SET CMP0074 NEW)
endif()
# Set project name # Set project name
project (storm CXX C) project (storm CXX C)

2
README.md

@ -11,6 +11,8 @@ Benchmarks
Example input files for Storm can be obtained from Example input files for Storm can be obtained from
https://github.com/moves-rwth/storm-examples. https://github.com/moves-rwth/storm-examples.
Various Benchmarks together with example invocations of Storm can be found at the [Quantitative Verification Benchmark Suite (QVBS)](http://qcomp.org/benchmarks).
Further examples and benchmarks can be found in the following repositories: Further examples and benchmarks can be found in the following repositories:
* **Prism files** (DTMC, MDP, CTMC): * **Prism files** (DTMC, MDP, CTMC):

Loading…
Cancel
Save