diff --git a/src/storm/logic/BoundedGloballyFormula.cpp b/src/storm/logic/BoundedGloballyFormula.cpp index e397117ef..f874befba 100644 --- a/src/storm/logic/BoundedGloballyFormula.cpp +++ b/src/storm/logic/BoundedGloballyFormula.cpp @@ -3,6 +3,7 @@ namespace storm { namespace logic { + // TODO: add 'k' as input to formula, maybe as TimeBound? BoundedGloballyFormula::BoundedGloballyFormula(std::shared_ptr const& subformula) : UnaryPathFormula(subformula) { // Intentionally left empty. } @@ -21,6 +22,7 @@ namespace storm { std::ostream& BoundedGloballyFormula::writeToStream(std::ostream& out) const { out << "G < "; + // TODO: write "{<, <=} k" this->getSubformula().writeToStream(out); return out; } diff --git a/src/storm/logic/BoundedGloballyFormula.h b/src/storm/logic/BoundedGloballyFormula.h index 97f7e26fb..e1fdf4592 100644 --- a/src/storm/logic/BoundedGloballyFormula.h +++ b/src/storm/logic/BoundedGloballyFormula.h @@ -1,5 +1,5 @@ -#ifndef STORM_BOUNDEDGLOBALLYFORMULA_H -#define STORM_BOUNDEDGLOBALLYFORMULA_H +#ifndef STORM_LOGIC_BOUNDEDGLOBALLYFORMULA_H +#define STORM_LOGIC_BOUNDEDGLOBALLYFORMULA_H #include "storm/logic/UnaryPathFormula.h" @@ -17,9 +17,10 @@ namespace storm { 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_BOUNDEDGLOBALLYFORMULA_H +#endif /* STORM_LOGIC_BOUNDEDGLOBALLYFORMULA_H */