9namespace modelchecker {
10template<
typename ValueType>
15template<
typename ValueType>
17 std::vector<point_type>
const& points,
polytope_type const& underApproximation,
23template<
typename ValueType>
30template<
typename ValueType>
32 std::vector<scheduler_type>&& schedulers,
polytope_type&& underApproximation,
34 :
ParetoCurveCheckResult<ValueType>(points, underApproximation, overApproximation), state(state), schedulers(schedulers) {}
36template<
typename ValueType>
38 return std::make_unique<ExplicitParetoCurveCheckResult<ValueType>>(this->state, this->points, this->underApproximation, this->overApproximation);
41template<
typename ValueType>
46template<
typename ValueType>
51template<
typename ValueType>
53 STORM_LOG_THROW(filter.isExplicitQualitativeCheckResult(), storm::exceptions::InvalidOperationException,
54 "Cannot filter explicit check result with non-explicit filter.");
55 STORM_LOG_THROW(filter.isResultForAllStates(), storm::exceptions::InvalidOperationException,
"Cannot filter check result with non-complete filter.");
60 "The check result fails to contain some results referred to by the filter.");
63template<
typename ValueType>
68template<
typename ValueType>
70 return schedulers.size() > 0;
73template<
typename ValueType>
75 STORM_LOG_THROW(this->hasScheduler(), storm::exceptions::InvalidOperationException,
"Unable to retrieve non-existing scheduler.");
79template<
typename ValueType>
81 STORM_LOG_THROW(this->hasScheduler(), storm::exceptions::InvalidOperationException,
"Unable to retrieve non-existing scheduler.");
ExplicitParetoCurveCheckResult()
storm::storage::sparse::state_type const & getState() const
virtual bool hasScheduler() const override
virtual bool isExplicitParetoCurveCheckResult() const override
virtual bool isExplicit() const override
typename ParetoCurveCheckResult< ValueType >::polytope_type polytope_type
virtual void filter(QualitativeCheckResult const &filter) override
Filters the current result wrt.
virtual std::unique_ptr< CheckResult > clone() const override
std::vector< scheduler_type > const & getSchedulers() const
vector_type const & getTruthValuesVector() const
A bit vector that is internally represented as a vector of 64-bit values.
uint64_t getNumberOfSetBits() const
Returns the number of bits that are set to true in this bit vector.
bool get(uint64_t index) const
Retrieves the truth value of the bit at the given index and performs a bound check.
#define STORM_LOG_THROW(cond, exception, message)