Browse Source

Merge branch 'master' of https://sselab.de/lab9/private/git/storm

Former-commit-id: b9cdd12623
tempestpy_adaptions
PBerger 12 years ago
parent
commit
4c780a945c
  1. 2
      src/storm.cpp

2
src/storm.cpp

@ -285,10 +285,10 @@ int main(const int argc, const char* argv[]) {
// Depending on the model type, the appropriate model checking procedure is chosen.
storm::modelchecker::prctl::AbstractModelChecker<double>* modelchecker = nullptr;
parser.getModel<storm::models::AbstractModel<double>>()->printModelInformationToStream(std::cout);
switch (parser.getType()) {
case storm::models::DTMC:
LOG4CPLUS_INFO(logger, "Model is a DTMC.");
parser.getModel<storm::models::Dtmc<double>>()->writeDotToStream(std::cout);
modelchecker = createPrctlModelChecker(*parser.getModel<storm::models::Dtmc<double>>());
checkPrctlFormulae(*modelchecker);
break;

Loading…
Cancel
Save