|
@ -26,7 +26,7 @@ namespace storm { |
|
|
class MonotonicityChecker { |
|
|
class MonotonicityChecker { |
|
|
|
|
|
|
|
|
public: |
|
|
public: |
|
|
MonotonicityChecker(std::shared_ptr<storm::models::ModelBase> model, std::vector<std::shared_ptr<storm::logic::Formula const>> formulas, bool validate, bool sccElimination); |
|
|
|
|
|
|
|
|
MonotonicityChecker(std::shared_ptr<storm::models::ModelBase> model, std::vector<std::shared_ptr<storm::logic::Formula const>> formulas, bool validate); |
|
|
/*! |
|
|
/*! |
|
|
* Checks for all lattices in the map if they are monotone increasing or monotone decreasing. |
|
|
* Checks for all lattices in the map if they are monotone increasing or monotone decreasing. |
|
|
* |
|
|
* |
|
@ -71,7 +71,7 @@ namespace storm { |
|
|
std::vector<std::shared_ptr<storm::logic::Formula const>> formulas; |
|
|
std::vector<std::shared_ptr<storm::logic::Formula const>> formulas; |
|
|
|
|
|
|
|
|
bool validate; |
|
|
bool validate; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool sccElimination; |
|
|
bool sccElimination; |
|
|
|
|
|
|
|
|
std::map<carl::Variable, std::pair<bool, bool>> resultCheckOnSamples; |
|
|
std::map<carl::Variable, std::pair<bool, bool>> resultCheckOnSamples; |
|
|