22template<
typename SparseModelType,
typename ConstantType>
27template<
typename SparseModelType,
typename ConstantType>
30 currentFormula = checkTask.
getFormula().asSharedPointer();
31 currentCheckTask = std::make_unique<storm::modelchecker::CheckTask<storm::logic::Formula, ConstantType>>(
32 checkTask.
substituteFormula(*currentFormula).template convertValueType<ConstantType>());
35 auto const& probOpFormula =
currentCheckTask->getFormula().asProbabilityOperatorFormula();
36 if (probOpFormula.getSubformula().isBoundedUntilFormula()) {
38 }
else if (probOpFormula.getSubformula().isUntilFormula()) {
40 }
else if (probOpFormula.getSubformula().isEventuallyFormula()) {
43 STORM_LOG_THROW(
false, storm::exceptions::NotSupportedException,
"Parameter lifting is not supported for the given property.");
46 auto const& rewOpFormula =
currentCheckTask->getFormula().asRewardOperatorFormula();
47 if (rewOpFormula.getSubformula().isEventuallyFormula()) {
49 }
else if (rewOpFormula.getSubformula().isCumulativeRewardFormula()) {
55template<
typename SparseModelType,
typename ConstantType>
57 return this->
parametricModel->getInitialStates().getNumberOfSetBits() == 1;
60template<
typename SparseModelType,
typename ConstantType>
66template<
typename RegionType>
68 std::map<typename RegionType::VariableType, storm::analysis::MonotonicityKind>
const& monotonicityResult,
70 typename RegionType::Valuation result;
71 for (
auto const& [var, mon] : monotonicityResult) {
73 result.emplace(var,
region.getLowerBoundary(var));
83template<
typename SparseModelType,
typename ConstantType>
86 bool sampleVerticesOfRegion) {
88 "Analyzing regions with parameter lifting requires a property where only the value in the initial states is relevant.");
90 "Analyzing regions with parameter lifting requires a bounded property.");
92 "Analyzing regions with parameter lifting requires a model with a single initial state.");
102 auto const center =
region.region.getCenterPoint();
108 auto const lowerCorner =
region.region.getLowerBoundaries();
123 [[maybe_unused]]
bool const existsViolated =
126 "Invalid state of region analysis.");
128 auto const dirForSat =
129 isLowerBound(this->
currentCheckTask->getBound().comparisonType) ? storm::OptimizationDirection::Minimize : storm::OptimizationDirection::Maximize;
131 std::vector<storm::OptimizationDirection> dirsToCheck;
133 dirsToCheck = {dirForSat};
134 }
else if (existsIllDefined) {
140 for (
auto const& dirToCheck : dirsToCheck) {
142 if (
auto globalMonotonicity =
region.monotonicityAnnotation.getGlobalMonotonicityResult();
143 globalMonotonicity.has_value() && globalMonotonicity->isDone() && globalMonotonicity->isAllMonotonicity()) {
145 STORM_LOG_ASSERT(valuation.size() ==
region.region.getVariables().size(),
"Not all parameters seem to be monotonic.");
147 bool const monCheckResult = checker.check(env, valuation)->template asExplicitQualitativeCheckResult<ConstantType>()[
getUniqueInitialState()];
148 if (existsSat == monCheckResult) {
150 STORM_LOG_INFO(
"Region " <<
region.region <<
" is " << result <<
", discovered with instantiation checker on " << valuation
151 <<
" and help of monotonicity\n");
152 region.resultKnownThroughMonotonicity =
true;
159 "This case should only be reached if the initial region result is unknown, but it is " << result <<
".");
161 if (sampleVerticesOfRegion) {
167 auto const checkResult = this->
check(env,
region, dirToCheck);
169 bool const value = checkResult->template asExplicitQualitativeCheckResult<ConstantType>()[
getUniqueInitialState()];
170 if ((dirToCheck == dirForSat) == value) {
172 }
else if (sampleVerticesOfRegion) {
183template<
typename SparseModelType,
typename ConstantType>
197 auto vertices =
region.getVerticesOfRegion(
region.getVariables());
198 auto vertexIt = vertices.begin();
199 while (vertexIt != vertices.end() && !(hasSatPoint && hasViolatedPoint)) {
203 hasViolatedPoint =
true;
209 if (hasViolatedPoint) {
221template<
typename SparseModelType,
typename ConstantType>
225 if (quantitativeResult.size() == 0) {
228 auto quantitativeCheckResult = std::make_unique<storm::modelchecker::ExplicitQuantitativeCheckResult<ConstantType>>(std::move(quantitativeResult));
230 return quantitativeCheckResult;
232 return quantitativeCheckResult->compareAgainstBound(this->
currentCheckTask->getFormula().asOperatorFormula().getComparisonType(),
233 this->currentCheckTask->getFormula().asOperatorFormula().template getThresholdAs<ConstantType>());
237template<
typename SparseModelType,
typename ConstantType>
244template<
typename SparseModelType,
typename ConstantType>
249 "Getting a bound at the initial state requires a model with a single initial state.");
254template<
typename SparseModelType,
typename ConstantType>
260template<
typename SparseModelType,
typename ConstantType>
266template<
typename SparseModelType,
typename ConstantType>
271template<
typename SparseModelType,
typename ConstantType>
276template<
typename SparseModelType,
typename ConstantType>
279 STORM_LOG_THROW(
false, storm::exceptions::NotSupportedException,
"Parameter lifting is not supported for the given property.");
282template<
typename SparseModelType,
typename ConstantType>
285 STORM_LOG_THROW(
false, storm::exceptions::NotSupportedException,
"Parameter lifting is not supported for the given property.");
288template<
typename SparseModelType,
typename ConstantType>
297template<
typename SparseModelType,
typename ConstantType>
300 STORM_LOG_THROW(
false, storm::exceptions::NotSupportedException,
"Parameter lifting is not supported for the given property.");
303template<
typename SparseModelType,
typename ConstantType>
306 STORM_LOG_THROW(
false, storm::exceptions::NotSupportedException,
"Parameter lifting is not supported for the given property.");
309template<
typename SparseModelType,
typename ConstantType>
310std::pair<typename SparseParameterLiftingModelChecker<SparseModelType, ConstantType>::CoefficientType,
317 for (
auto const& var :
region.region.getVariables()) {
318 point.emplace(var,
region.region.getCenter(var));
325template<
typename SparseModelType,
typename ConstantType>
328 std::vector<ConstantType>
const& newValues) {
334 region.updateValueBound(convertedValue, dir);
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.
Class to efficiently check a formula on a parametric model with different parameter instantiations.
Class to approximately check a formula on a parametric model for all parameter valuations within a re...
virtual RegionResult analyzeRegion(Environment const &env, AnnotatedRegion< ParametricType > ®ion, RegionResultHypothesis const &hypothesis=RegionResultHypothesis::Unknown, bool sampleVerticesOfRegion=false) override
Analyzes the given region by means of Parameter Lifting.
typename RegionModelChecker< ParametricType >::CoefficientType CoefficientType
uint64_t getUniqueInitialState() const
SparseParameterLiftingModelChecker()
std::unique_ptr< CheckTask< storm::logic::Formula, ConstantType > > currentCheckTask
virtual void specifyUntilFormula(Environment const &env, CheckTask< storm::logic::UntilFormula, ConstantType > const &checkTask)
virtual void specifyReachabilityRewardFormula(Environment const &env, CheckTask< storm::logic::EventuallyFormula, ConstantType > const &checkTask)
std::unique_ptr< QuantitativeCheckResult< ConstantType > > getBound(Environment const &env, AnnotatedRegion< ParametricType > ®ion, storm::solver::OptimizationDirection const &dirForParameters)
Over-approximates the values within the given region for each state of the considered parametric mode...
virtual void specifyCumulativeRewardFormula(const CheckTask< storm::logic::CumulativeRewardFormula, ConstantType > &checkTask)
virtual storm::modelchecker::SparseInstantiationModelChecker< SparseModelType, ConstantType > & getInstantiationCheckerSAT(bool quantitative)
std::unique_ptr< CheckResult > check(Environment const &env, AnnotatedRegion< ParametricType > ®ion, storm::solver::OptimizationDirection const &dirForParameters)
Checks the specified formula on the given region by applying parameter lifting (Parameter choices are...
RegionResult sampleVertices(Environment const &env, storm::storage::ParameterRegion< ParametricType > const ®ion, RegionResult const &initialResult=RegionResult::Unknown)
Analyzes the 2^parameters corner points of the given region.
void specifyFormula(Environment const &env, CheckTask< storm::logic::Formula, ParametricType > const &checkTask)
virtual storm::modelchecker::SparseInstantiationModelChecker< SparseModelType, ConstantType > & getInstantiationCheckerVIO(bool quantitative)
bool hasUniqueInitialState() const
virtual storm::modelchecker::SparseInstantiationModelChecker< SparseModelType, ConstantType > & getInstantiationChecker(bool quantitative)=0
virtual std::vector< ConstantType > computeQuantitativeValues(Environment const &env, AnnotatedRegion< ParametricType > ®ion, storm::solver::OptimizationDirection const &dirForParameters)=0
virtual CoefficientType getBoundAtInitState(Environment const &env, AnnotatedRegion< ParametricType > ®ion, storm::solver::OptimizationDirection const &dirForParameters) override
Over-approximates the value within the given region.
void updateKnownValueBoundInRegion(AnnotatedRegion< ParametricType > ®ion, storm::solver::OptimizationDirection dir, std::vector< ConstantType > const &newValues)
virtual void specifyReachabilityProbabilityFormula(Environment const &env, CheckTask< storm::logic::EventuallyFormula, ConstantType > const &checkTask)
typename RegionModelChecker< ParametricType >::Valuation Valuation
CheckTask< storm::logic::Formula, ConstantType > const & getCurrentCheckTask() const
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...
SparseModelType const & getConsideredParametricModel() const
virtual void specifyBoundedUntilFormula(const CheckTask< storm::logic::BoundedUntilFormula, ConstantType > &checkTask)
std::shared_ptr< SparseModelType > parametricModel
#define STORM_LOG_INFO(message)
#define STORM_LOG_ASSERT(cond, message)
#define STORM_LOG_WARN_COND(cond, message)
#define STORM_LOG_THROW(cond, exception, message)
@ Incr
the result is monotonically increasing
@ Decr
the result is monotonically decreasing
@ Constant
the result is constant
RegionResult
The results for a single Parameter Region.
@ CenterSat
the formula is satisfied for the parameter Valuation that corresponds to the center point of the regi...
@ CenterIllDefined
the formula is ill-defined for the parameter Valuation that corresponds to the center point of the re...
@ 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
@ ExistsBoth
the formula is satisfied for some parameters but also violated for others
@ AllIllDefined
the formula is ill-defined for all parameters in the given region
@ CenterViolated
the formula is violated for the parameter Valuation that corresponds to the center point of the regio...
@ ExistsSat
the formula is satisfied for at least one parameter evaluation that lies in the given region
@ ExistsViolated
the formula is violated for at least one parameter evaluation that lies in the given region
@ ExistsIllDefined
the formula is ill-defined for at least one parameter evaluation that lies in the given region
RegionResultHypothesis
hypothesis for the result for a single Parameter Region
auto getOptimalValuationForMonotonicity(RegionType const ®ion, std::map< typename RegionType::VariableType, storm::analysis::MonotonicityKind > const &monotonicityResult, storm::OptimizationDirection dir)
bool constexpr maximize(OptimizationDirection d)
OptimizationDirection constexpr invert(OptimizationDirection d)
bool constexpr minimize(OptimizationDirection d)
bool isInfinity(ValueType const &a)
TargetType convertNumber(SourceType const &number)
solver::OptimizationDirection OptimizationDirection