|
@ -54,6 +54,8 @@ namespace storm { |
|
|
return this->checkMultiObjectiveFormula(env, checkTask.substituteFormula(formula.asMultiObjectiveFormula())); |
|
|
return this->checkMultiObjectiveFormula(env, checkTask.substituteFormula(formula.asMultiObjectiveFormula())); |
|
|
} else if (formula.isQuantileFormula()){ |
|
|
} else if (formula.isQuantileFormula()){ |
|
|
return this->checkQuantileFormula(env, checkTask.substituteFormula(formula.asQuantileFormula())); |
|
|
return this->checkQuantileFormula(env, checkTask.substituteFormula(formula.asQuantileFormula())); |
|
|
|
|
|
} else if(formula.isGameFormula()){ |
|
|
|
|
|
return this->checkGameFormula(env, checkTask.substituteFormula(formula.asGameFormula())); |
|
|
} |
|
|
} |
|
|
STORM_LOG_THROW(false, storm::exceptions::InvalidArgumentException, "The given formula '" << formula << "' is invalid."); |
|
|
STORM_LOG_THROW(false, storm::exceptions::InvalidArgumentException, "The given formula '" << formula << "' is invalid."); |
|
|
} |
|
|
} |
|
|