Browse Source

Changed functions of GmmxxDtmcPrctlModelChecker to fit to the changed

interface.
tempestpy_adaptions
Lanchid 12 years ago
parent
commit
645ebe8b9e
  1. 7
      src/modelChecker/GmmxxDtmcPrctlModelChecker.h

7
src/modelChecker/GmmxxDtmcPrctlModelChecker.h

@ -37,7 +37,12 @@ public:
virtual ~GmmxxDtmcPrctlModelChecker() { }
virtual mrmc::storage::BitVector* checkProbabilisticOperator(const mrmc::formula::ProbabilisticIntervalOperator<Type>& formula) const {
virtual mrmc::storage::BitVector* checkProbabilisticOperator(const mrmc::formula::ProbabilisticOperator<Type>& formula) const {
//FIXME: Implementation needed
return NULL;
}
virtual mrmc::storage::BitVector* checkProbabilisticIntervalOperator(const mrmc::formula::ProbabilisticIntervalOperator<Type>& formula) const {
std::vector<Type>* probabilisticResult = this->checkPathFormula(formula.getPathFormula());
mrmc::storage::BitVector* result = new mrmc::storage::BitVector(this->getModel().getNumberOfStates());

Loading…
Cancel
Save