Browse Source

Merge

Former-commit-id: 23174a1636
tempestpy_adaptions
Mavo 9 years ago
parent
commit
cc2eb383c9
  1. 1
      src/settings/Option.cpp
  2. 1
      src/storage/BitVectorHashMap.cpp
  3. 2
      src/storage/dd/Bdd.cpp
  4. 5
      src/storm-dyftee.cpp
  5. 1
      src/utility/macros.h

1
src/settings/Option.cpp

@ -2,6 +2,7 @@
#include <iomanip>
#include <string>
#include <algorithm>
#include "ArgumentBase.h"
#include "Argument.h"

1
src/storage/BitVectorHashMap.cpp

@ -1,6 +1,7 @@
#include "src/storage/BitVectorHashMap.h"
#include <iostream>
#include <algorithm>
#include "src/utility/macros.h"

2
src/storage/dd/Bdd.cpp

@ -1,3 +1,5 @@
#include <algorithm>
#include "src/storage/dd/Bdd.h"
#include "src/storage/dd/Add.h"
#include "src/storage/dd/Odd.h"

5
src/storm-dyftee.cpp

@ -46,6 +46,8 @@ void analyzeDFT(std::string filename, std::string property, bool symred = false)
model->printModelInformationToStream(std::cout);
std::cout << "No. states (Explored): " << model->getNumberOfStates() << std::endl;
std::cout << "No. transitions (Explored): " << model->getNumberOfTransitions() << std::endl;
if (model->getNumberOfStates() > 500 && model->isOfType(storm::models::ModelType::Ctmc)) {
std::cout << "Bisimulation..." << std::endl;
@ -53,6 +55,9 @@ void analyzeDFT(std::string filename, std::string property, bool symred = false)
model->printModelInformationToStream(std::cout);
}
std::cout << "No. states (Bisimulation): " << model->getNumberOfStates() << std::endl;
std::cout << "No. transitions (Bisimulation): " << model->getNumberOfTransitions() << std::endl;
// Model checking
std::cout << "Model checking..." << std::endl;
std::unique_ptr<storm::modelchecker::CheckResult> result(storm::verifySparseModel(model, formulas[0]));

1
src/utility/macros.h

@ -2,6 +2,7 @@
#define STORM_UTILITY_MACROS_H_
#include <cassert>
#include <cstring>
#include "storm-config.h"
#ifndef STORM_LOGGING_FRAMEWORK

Loading…
Cancel
Save