Browse Source

Merge remote-tracking branch 'upstream/master'

tempestpy_adaptions
Matthias Volk 7 years ago
parent
commit
ea7843d64b
  1. 13
      README.md
  2. 8
      src/storm-dft/storage/dft/OrderDFTElementsById.cpp
  3. 4
      src/storm/storage/expressions/Variable.h

13
README.md

@ -1,22 +1,21 @@
Storm
==============================
For more instructions, check out the documentation found in [Getting Started](https://moves-rwth.github.io/storm/getting-started.html)
For more instructions, check out the documentation found in [Getting Started](http://www.stormchecker.org/getting-started.html).
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.
Running make example-files automatically obtains these files.
Further examples and benchmarks found in the following repositories:
Further examples and benchmarks can be found in the following repositories:
* **Prism files** (DTMC, MDP, CTMC):
http://www.prismmodelchecker.org/benchmarks/
http://www.prismmodelchecker.org/benchmarks
* **Jani files** (DTMC, MDP, CTMC, MA):
http://jani-spec.org/
http://jani-spec.org
* **GSPN**s:
(private, contact: sebastian.junges@cs.rwth-aachen.de)
* **DFT**s:
@ -31,8 +30,8 @@ Storm has been developed at RWTH Aachen University.
###### Principal developers
* Christian Dehnert
* Joost-Pieter Katoen
* Sebastian Junges
* Joost-Pieter Katoen
* Matthias Volk
###### Developers (lexicographical order)

8
src/storm-dft/storage/dft/OrderDFTElementsById.cpp

@ -22,12 +22,12 @@ namespace storm {
// Explicitly instantiate the class.
template class OrderElementsById<double>;
template class OrderElementsByRank<double>;
template struct OrderElementsById<double>;
template struct OrderElementsByRank<double>;
#ifdef STORM_HAVE_CARL
template class OrderElementsById<RationalFunction>;
template class OrderElementsByRank<RationalFunction>;
template struct OrderElementsById<RationalFunction>;
template struct OrderElementsByRank<RationalFunction>;
#endif
}
}

4
src/storm/storage/expressions/Variable.h

@ -130,9 +130,9 @@ namespace storm {
bool hasRationalType() const;
/*!
* Checks whether the variable is of boolean type.
* Checks whether the variable is of numerical type.
*
* @return True iff the variable if of boolean type.
* @return True iff the variable if of numerical type.
*/
bool hasNumericalType() const;

Loading…
Cancel
Save