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.
19 lines
578 B
19 lines
578 B
#include "src/logic/EventuallyFormula.h"
|
|
|
|
namespace storm {
|
|
namespace logic {
|
|
EventuallyFormula::EventuallyFormula(std::shared_ptr<Formula const> const& subformula) : UnaryPathFormula(subformula) {
|
|
// Intentionally left empty.
|
|
}
|
|
|
|
bool EventuallyFormula::isEventuallyFormula() const {
|
|
return true;
|
|
}
|
|
|
|
std::ostream& EventuallyFormula::writeToStream(std::ostream& out) const {
|
|
out << "F ";
|
|
this->getSubformula().writeToStream(out);
|
|
return out;
|
|
}
|
|
}
|
|
}
|