You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
191 lines
4.9 KiB
191 lines
4.9 KiB
/*
|
|
* PathBoundOperator.h
|
|
*
|
|
* Created on: 27.12.2012
|
|
* Author: Christian Dehnert
|
|
*/
|
|
|
|
#ifndef STORM_FORMULA_PATHBOUNDOPERATOR_H_
|
|
#define STORM_FORMULA_PATHBOUNDOPERATOR_H_
|
|
|
|
#include "src/formula/AbstractStateFormula.h"
|
|
#include "src/formula/AbstractPathFormula.h"
|
|
#include "src/formula/AbstractFormulaChecker.h"
|
|
|
|
#include "src/formula/OptimizingOperator.h"
|
|
|
|
#include "src/modelchecker/ForwardDeclarations.h"
|
|
#include "src/utility/ConstTemplates.h"
|
|
|
|
namespace storm {
|
|
|
|
namespace formula {
|
|
|
|
template <class T> class PathBoundOperator;
|
|
|
|
/*!
|
|
* @brief
|
|
* Class for a Abstract formula tree with a P (probablistic) operator node over a probability interval
|
|
* as root.
|
|
*
|
|
* Has one Abstract path formula as sub formula/tree.
|
|
*
|
|
* @par Semantics
|
|
* The formula holds iff the probability that the path formula holds is inside the bounds
|
|
* specified in this operator
|
|
*
|
|
* The subtree is seen as part of the object and deleted with it
|
|
* (this behavior can be prevented by setting them to NULL before deletion)
|
|
*
|
|
*
|
|
* @see AbstractStateFormula
|
|
* @see AbstractPathFormula
|
|
* @see ProbabilisticOperator
|
|
* @see ProbabilisticNoBoundsOperator
|
|
* @see AbstractFormula
|
|
*/
|
|
template<class T>
|
|
class PathBoundOperator : public AbstractStateFormula<T>, public OptimizingOperator {
|
|
|
|
public:
|
|
enum ComparisonType { LESS, LESS_EQUAL, GREATER, GREATER_EQUAL };
|
|
|
|
/*!
|
|
* Constructor for non-optimizing operator.
|
|
*
|
|
* @param comparisonOperator The relation for the bound.
|
|
* @param bound The bound for the probability
|
|
* @param pathFormula The child node
|
|
*/
|
|
PathBoundOperator(ComparisonType comparisonOperator, T bound, AbstractPathFormula<T>* pathFormula)
|
|
: comparisonOperator(comparisonOperator), bound(bound), pathFormula(pathFormula) {
|
|
// Intentionally left empty
|
|
}
|
|
|
|
/*!
|
|
* Constructor for optimizing operator.
|
|
*
|
|
* @param comparisonOperator The relation for the bound.
|
|
* @param bound The bound for the probability
|
|
* @param pathFormula The child node
|
|
* @param minimumOperator Indicator, if operator should be minimum or maximum operator.
|
|
*/
|
|
PathBoundOperator(ComparisonType comparisonOperator, T bound, AbstractPathFormula<T>* pathFormula, bool minimumOperator)
|
|
: comparisonOperator(comparisonOperator), bound(bound), pathFormula(pathFormula), OptimizingOperator(minimumOperator) {
|
|
// Intentionally left empty
|
|
}
|
|
|
|
/*!
|
|
* Destructor
|
|
*
|
|
* The subtree is deleted with the object
|
|
* (this behavior can be prevented by setting them to NULL before deletion)
|
|
*/
|
|
virtual ~PathBoundOperator() {
|
|
if (pathFormula != nullptr) {
|
|
delete pathFormula;
|
|
}
|
|
}
|
|
|
|
/*!
|
|
* @returns the child node (representation of a Abstract path formula)
|
|
*/
|
|
const AbstractPathFormula<T>& getPathFormula () const {
|
|
return *pathFormula;
|
|
}
|
|
|
|
/*!
|
|
* Sets the child node
|
|
*
|
|
* @param pathFormula the path formula that becomes the new child node
|
|
*/
|
|
void setPathFormula(AbstractPathFormula<T>* pathFormula) {
|
|
this->pathFormula = pathFormula;
|
|
}
|
|
|
|
/*!
|
|
* @returns the comparison relation
|
|
*/
|
|
const ComparisonType getComparisonOperator() const {
|
|
return comparisonOperator;
|
|
}
|
|
|
|
void setComparisonOperator(ComparisonType comparisonOperator) {
|
|
this->comparisonOperator = comparisonOperator;
|
|
}
|
|
|
|
/*!
|
|
* @returns the bound for the measure
|
|
*/
|
|
const T& getBound() const {
|
|
return bound;
|
|
}
|
|
|
|
/*!
|
|
* Sets the interval in which the probability that the path formula holds may lie in.
|
|
*
|
|
* @param bound The bound for the measure
|
|
*/
|
|
void setBound(T bound) {
|
|
this->bound = bound;
|
|
}
|
|
|
|
/*!
|
|
* @returns a string representation of the formula
|
|
*/
|
|
virtual std::string toString() const {
|
|
std::string result = "";
|
|
switch (comparisonOperator) {
|
|
case LESS: result += "<"; break;
|
|
case LESS_EQUAL: result += "<="; break;
|
|
case GREATER: result += ">"; break;
|
|
case GREATER_EQUAL: result += ">="; break;
|
|
}
|
|
result += " ";
|
|
result += std::to_string(bound);
|
|
result += " [";
|
|
result += pathFormula->toString();
|
|
result += "]";
|
|
return result;
|
|
}
|
|
|
|
bool meetsBound(T value) const {
|
|
switch (comparisonOperator) {
|
|
case LESS: return value < bound; break;
|
|
case LESS_EQUAL: return value <= bound; break;
|
|
case GREATER: return value > bound; break;
|
|
case GREATER_EQUAL: return value >= bound; break;
|
|
default: return false;
|
|
}
|
|
}
|
|
|
|
/*!
|
|
* Clones the called object.
|
|
*
|
|
* Performs a "deep copy", i.e. the subtrees of the new object are clones of the original ones
|
|
*
|
|
* @returns a new AND-object that is identical the called object.
|
|
*/
|
|
virtual AbstractStateFormula<T>* clone() const = 0;
|
|
|
|
/*!
|
|
* @brief Checks if the subtree conforms to some logic.
|
|
*
|
|
* @param checker Formula checker object.
|
|
* @return true iff the subtree conforms to some logic.
|
|
*/
|
|
virtual bool conforms(const AbstractFormulaChecker<T>& checker) const {
|
|
return checker.conforms(this->pathFormula);
|
|
}
|
|
|
|
private:
|
|
ComparisonType comparisonOperator;
|
|
T bound;
|
|
AbstractPathFormula<T>* pathFormula;
|
|
};
|
|
|
|
} //namespace formula
|
|
|
|
} //namespace storm
|
|
|
|
#endif /* STORM_FORMULA_PATHBOUNDOPERATOR_H_ */
|