16template<
typename SparseModelType,
typename ImpreciseType,
typename PreciseType>
18 : numOfWrongRegions(0) {
22template<
typename SparseModelType,
typename ImpreciseType,
typename PreciseType>
24 STORM_LOG_STATISTICS(
"Validating Parameter Lifting Model Checker detected " << numOfWrongRegions <<
" regions where the imprecise method was wrong.\n");
27template<
typename SparseModelType,
typename ImpreciseType,
typename PreciseType>
30 return impreciseChecker.canHandle(parametricModel, checkTask) && preciseChecker.canHandle(parametricModel, checkTask);
33template<
typename SparseModelType,
typename ImpreciseType,
typename PreciseType>
37 bool allowModelSimplifications,
bool graphPreserving) {
39 "Combination of model " << parametricModel->getType() <<
" and formula '" << checkTask.
getFormula() <<
"' is not supported.");
40 STORM_LOG_THROW(graphPreserving, storm::exceptions::NotImplementedException,
"Non-graph-preserving regions not implemented for validating PLA.");
44 auto specifyUnderlyingCheckers = [&](
auto pm,
auto const& ct) {
51 if (allowModelSimplifications) {
52 auto dtmcOrMdp = parametricModel->template as<SparseModelType>();
53 if constexpr (IsMDP) {
55 STORM_LOG_THROW(simplifier.simplify(checkTask.
getFormula()), storm::exceptions::UnexpectedException,
"Simplifying the model was not successfull.");
56 auto simplifiedTask = checkTask.
substituteFormula(*simplifier.getSimplifiedFormula());
57 specifyUnderlyingCheckers(simplifier.getSimplifiedModel(), simplifiedTask);
60 STORM_LOG_THROW(simplifier.simplify(checkTask.
getFormula()), storm::exceptions::UnexpectedException,
"Simplifying the model was not successfull.");
61 auto simplifiedTask = checkTask.
substituteFormula(*simplifier.getSimplifiedFormula());
62 specifyUnderlyingCheckers(simplifier.getSimplifiedModel(), simplifiedTask);
65 specifyUnderlyingCheckers(parametricModel, checkTask);
69template<
typename SparseModelType,
typename ImpreciseType,
typename PreciseType>
73 bool sampleVerticesOfRegion) {
75 auto impreciseAnnotatedRegion =
region;
76 RegionResult currentResult = impreciseChecker.analyzeRegion(env, impreciseAnnotatedRegion, hypothesis,
false);
79 applyHintsToPreciseChecker();
87 preciseChecker.check(env,
region, parameterOptDir)
88 ->template asExplicitQualitativeCheckResult<PreciseType>()[*preciseChecker.getConsideredParametricModel().getInitialStates().begin()];
91 if (!preciseResultAgrees) {
100 preciseChecker.check(env,
region, parameterOptDir)
101 ->template asExplicitQualitativeCheckResult<PreciseType>()[*preciseChecker.getConsideredParametricModel().getInitialStates().begin()];
102 if (preciseResult && parameterOptDir == preciseChecker.getCurrentCheckTask().getOptimizationDirection()) {
104 }
else if (!preciseResult && parameterOptDir ==
storm::solver::invert(preciseChecker.getCurrentCheckTask().getOptimizationDirection())) {
112 currentResult = preciseChecker.sampleVertices(env,
region.region, currentResult);
115 return currentResult;
118template<
typename SparseModelType,
typename ImpreciseType,
typename PreciseType>
119typename ValidatingSparseParameterLiftingModelChecker<SparseModelType, ImpreciseType, PreciseType>::CoefficientType
122 return preciseChecker.getBoundAtInitState(env,
region, dirForParameters);
125template<
typename SparseModelType,
typename ImpreciseType,
typename PreciseType>
126std::pair<typename ValidatingSparseParameterLiftingModelChecker<SparseModelType, ImpreciseType, PreciseType>::CoefficientType,
127 typename ValidatingSparseParameterLiftingModelChecker<SparseModelType, ImpreciseType, PreciseType>::Valuation>
130 return preciseChecker.getAndEvaluateGoodPoint(env,
region, dirForParameters);
133template<
typename SparseModelType,
typename ImpreciseType,
typename PreciseType>
138 preciseChecker.isMonotonicitySupported(backend, checkTask);
141template<
typename SparseModelType,
typename ImpreciseType,
typename PreciseType>
142void ValidatingSparseParameterLiftingModelChecker<SparseModelType, ImpreciseType, PreciseType>::applyHintsToPreciseChecker() {
143 if (impreciseChecker.getCurrentMaxScheduler()) {
144 preciseChecker.getCurrentMaxScheduler() = impreciseChecker.getCurrentMaxScheduler()->template toValueType<PreciseType>();
146 if (impreciseChecker.getCurrentMinScheduler()) {
147 preciseChecker.getCurrentMinScheduler() = impreciseChecker.getCurrentMinScheduler()->template toValueType<PreciseType>();
149 if constexpr (IsMDP) {
150 if (impreciseChecker.getCurrentPlayer1Scheduler()) {
151 preciseChecker.getCurrentPlayer1Scheduler() = impreciseChecker.getCurrentPlayer1Scheduler()->template toValueType<PreciseType>();
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 void specifyMonotonicity(std::shared_ptr< MonotonicityBackend< SparseModelType::ValueType > > backend, CheckTask< storm::logic::Formula, SparseModelType::ValueType > const &checkTask)
std::shared_ptr< MonotonicityBackend< SparseModelType::ValueType > > monotonicityBackend
virtual void specifySplitEstimates(std::optional< RegionSplitEstimateKind > splitEstimates, CheckTask< storm::logic::Formula, SparseModelType::ValueType > const &checkTask)
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_STATISTICS(message)
#define STORM_LOG_THROW(cond, exception, 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)