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.
26 lines
837 B
26 lines
837 B
#ifndef STORM_LOGIC_GLOBALLYFORMULA_H_
|
|
#define STORM_LOGIC_GLOBALLYFORMULA_H_
|
|
|
|
#include "src/logic/UnaryPathFormula.h"
|
|
|
|
namespace storm {
|
|
namespace logic {
|
|
class GloballyFormula : public UnaryPathFormula {
|
|
public:
|
|
GloballyFormula(std::shared_ptr<Formula const> const& subformula);
|
|
|
|
virtual ~GloballyFormula() {
|
|
// Intentionally left empty.
|
|
}
|
|
|
|
virtual bool isGloballyFormula() const override;
|
|
virtual bool isProbabilityPathFormula() const override;
|
|
|
|
virtual boost::any accept(FormulaVisitor const& visitor, boost::any const& data) const override;
|
|
|
|
virtual std::ostream& writeToStream(std::ostream& out) const override;
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif /* STORM_LOGIC_GLOBALLYFORMULA_H_ */
|