16namespace modelchecker {
18template<
typename SparseModelType,
typename ImpreciseType,
typename PreciseType>
20 : numOfWrongRegions(0) {
24template<
typename SparseModelType,
typename ImpreciseType,
typename PreciseType>
26 if (storm::settings::getModule<storm::settings::modules::CoreSettings>().isShowStatisticsSet()) {
27 STORM_PRINT_AND_LOG(
"Validating Parameter Lifting Model Checker detected " << numOfWrongRegions <<
" regions where the imprecise method was wrong.\n");
31template<
typename SparseModelType,
typename ImpreciseType,
typename PreciseType>
34 return impreciseChecker.canHandle(parametricModel, checkTask) && preciseChecker.canHandle(parametricModel, checkTask);
37template<
typename SparseModelType,
typename ImpreciseType,
typename PreciseType>
41 bool allowModelSimplifications,
bool graphPreserving) {
42 STORM_LOG_THROW(this->canHandle(parametricModel, checkTask), storm::exceptions::NotSupportedException,
43 "Combination of model " << parametricModel->getType() <<
" and formula '" << checkTask.
getFormula() <<
"' is not supported.");
44 STORM_LOG_THROW(graphPreserving, storm::exceptions::NotImplementedException,
"Non-graph-preserving regions not implemented for validating PLA");
45 this->specifySplitEstimates(generateRegionSplitEstimates, checkTask);
46 this->specifyMonotonicity(monotonicityBackend, checkTask);
48 auto specifyUnderlyingCheckers = [&](
auto pm,
auto const& ct) {
51 impreciseChecker.specify(env, pm, ct, std::nullopt, monotonicityBackend,
false);
52 preciseChecker.specify(env, pm, ct, std::nullopt, monotonicityBackend,
false);
55 if (allowModelSimplifications) {
56 auto dtmcOrMdp = parametricModel->template as<SparseModelType>();
57 if constexpr (IsMDP) {
59 if (!simplifier.simplify(checkTask.
getFormula())) {
60 STORM_LOG_THROW(
false, storm::exceptions::UnexpectedException,
"Simplifying the model was not successfull.");
62 auto simplifiedTask = checkTask.
substituteFormula(*simplifier.getSimplifiedFormula());
63 specifyUnderlyingCheckers(simplifier.getSimplifiedModel(), simplifiedTask);
66 if (!simplifier.simplify(checkTask.
getFormula())) {
67 STORM_LOG_THROW(
false, storm::exceptions::UnexpectedException,
"Simplifying the model was not successfull.");
69 auto simplifiedTask = checkTask.
substituteFormula(*simplifier.getSimplifiedFormula());
70 specifyUnderlyingCheckers(simplifier.getSimplifiedModel(), simplifiedTask);
73 specifyUnderlyingCheckers(parametricModel, checkTask);
77template<
typename SparseModelType,
typename ImpreciseType,
typename PreciseType>
81 bool sampleVerticesOfRegion) {
83 auto impreciseAnnotatedRegion = region;
84 RegionResult currentResult = impreciseChecker.analyzeRegion(env, impreciseAnnotatedRegion, hypothesis,
false);
87 applyHintsToPreciseChecker();
94 bool preciseResult = preciseChecker.check(env, region, parameterOptDir)
95 ->asExplicitQualitativeCheckResult()[*preciseChecker.getConsideredParametricModel().getInitialStates().begin()];
98 if (!preciseResultAgrees) {
106 preciseResult = preciseChecker.check(env, region, parameterOptDir)
107 ->asExplicitQualitativeCheckResult()[*preciseChecker.getConsideredParametricModel().getInitialStates().begin()];
108 if (preciseResult && parameterOptDir == preciseChecker.getCurrentCheckTask().getOptimizationDirection()) {
110 }
else if (!preciseResult && parameterOptDir ==
storm::solver::invert(preciseChecker.getCurrentCheckTask().getOptimizationDirection())) {
118 currentResult = preciseChecker.sampleVertices(env, region.
region, currentResult);
121 return currentResult;
124template<
typename SparseModelType,
typename ImpreciseType,
typename PreciseType>
125typename ValidatingSparseParameterLiftingModelChecker<SparseModelType, ImpreciseType, PreciseType>::CoefficientType
128 return preciseChecker.getBoundAtInitState(env, region, dirForParameters);
131template<
typename SparseModelType,
typename ImpreciseType,
typename PreciseType>
132std::pair<typename ValidatingSparseParameterLiftingModelChecker<SparseModelType, ImpreciseType, PreciseType>::CoefficientType,
133 typename ValidatingSparseParameterLiftingModelChecker<SparseModelType, ImpreciseType, PreciseType>::Valuation>
136 return preciseChecker.getAndEvaluateGoodPoint(env, region, dirForParameters);
139template<
typename SparseModelType,
typename ImpreciseType,
typename PreciseType>
144 preciseChecker.isMonotonicitySupported(backend, checkTask);
147template<
typename SparseModelType,
typename ImpreciseType,
typename PreciseType>
149 if (impreciseChecker.getCurrentMaxScheduler()) {
150 preciseChecker.getCurrentMaxScheduler() = impreciseChecker.getCurrentMaxScheduler()->template toValueType<PreciseType>();
152 if (impreciseChecker.getCurrentMinScheduler()) {
153 preciseChecker.getCurrentMinScheduler() = impreciseChecker.getCurrentMinScheduler()->template toValueType<PreciseType>();
155 if constexpr (IsMDP) {
156 if (impreciseChecker.getCurrentPlayer1Scheduler()) {
157 preciseChecker.getCurrentPlayer1Scheduler() = impreciseChecker.getCurrentPlayer1Scheduler()->template toValueType<PreciseType>();
162template class ValidatingSparseParameterLiftingModelChecker<storm::models::sparse::Dtmc<storm::RationalFunction>, double, storm::RationalNumber>;
163template class ValidatingSparseParameterLiftingModelChecker<storm::models::sparse::Mdp<storm::RationalFunction>, double, storm::RationalNumber>;
CheckTask< NewFormulaType, ValueType > substituteFormula(NewFormulaType const &newFormula) const
Copies the check task from the source while replacing the formula with the new one.
FormulaType const & getFormula() const
Retrieves the formula from this task.
virtual bool requiresInteractionWithRegionModelChecker() const
Returns true, if a region model checker needs to implement specific methods to properly use this back...
virtual RegionResult analyzeRegion(Environment const &env, AnnotatedRegion< ParametricType > ®ion, RegionResultHypothesis const &hypothesis=RegionResultHypothesis::Unknown, bool sampleVerticesOfRegion=false) override
Analyzes the given region.
virtual CoefficientType getBoundAtInitState(Environment const &env, AnnotatedRegion< ParametricType > ®ion, storm::solver::OptimizationDirection const &dirForParameters) override
Over-approximates the value within the given region.
virtual ~ValidatingSparseParameterLiftingModelChecker()
virtual void specify(Environment const &env, std::shared_ptr< storm::models::ModelBase > parametricModel, CheckTask< storm::logic::Formula, ParametricType > const &checkTask, std::optional< RegionSplitEstimateKind > generateRegionSplitEstimates=std::nullopt, std::shared_ptr< MonotonicityBackend< ParametricType > > monotonicityBackend={}, bool allowModelSimplifications=true, bool graphPreserving=true) override
ValidatingSparseParameterLiftingModelChecker()
virtual bool isMonotonicitySupported(MonotonicityBackend< ParametricType > const &backend, CheckTask< storm::logic::Formula, ParametricType > const &checkTask) const override
Returns whether this region model checker can work together with the given monotonicity backend.
virtual std::pair< CoefficientType, Valuation > getAndEvaluateGoodPoint(Environment const &env, AnnotatedRegion< ParametricType > ®ion, storm::solver::OptimizationDirection const &dirForParameters) override
Heuristically finds a point within the region and computes the value at the initial state for that po...
virtual bool canHandle(std::shared_ptr< storm::models::ModelBase > parametricModel, CheckTask< storm::logic::Formula, typename SparseModelType::ValueType > const &checkTask) const override
#define STORM_LOG_THROW(cond, exception, message)
#define STORM_PRINT_AND_LOG(message)
RegionResult
The results for a single Parameter Region.
@ AllSat
the formula is satisfied for all well-defined parameters in the given region
@ AllViolated
the formula is violated for all well-defined parameters in the given region
@ Unknown
the result is unknown
RegionResultHypothesis
hypothesis for the result for a single Parameter Region
OptimizationDirection constexpr invert(OptimizationDirection d)
Region const region
The subregions of this region.