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.
23 lines
673 B
23 lines
673 B
#ifndef STORM_LOGIC_EVENTUALLYFORMULA_H_
|
|
#define STORM_LOGIC_EVENTUALLYFORMULA_H_
|
|
|
|
#include "src/logic/UnaryPathFormula.h"
|
|
|
|
namespace storm {
|
|
namespace logic {
|
|
class EventuallyFormula : public UnaryPathFormula {
|
|
public:
|
|
EventuallyFormula(std::shared_ptr<Formula const> const& subformula);
|
|
|
|
virtual ~EventuallyFormula() {
|
|
// Intentionally left empty.
|
|
}
|
|
|
|
virtual bool isEventuallyFormula() const override;
|
|
|
|
virtual std::ostream& writeToStream(std::ostream& out) const override;
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif /* STORM_LOGIC_EVENTUALLYFORMULA_H_ */
|