Storm 1.14.0.1
A Modern Probabilistic Model Checker
Loading...
Searching...
No Matches
BooleanLiteralFormula.h
Go to the documentation of this file.
1#pragma once
2
4
5namespace storm {
6namespace logic {
8 public:
9 BooleanLiteralFormula(bool value);
10
12 // Intentionally left empty.
13 }
14
15 virtual bool isBooleanLiteralFormula() const override;
16 virtual bool isTrueFormula() const override;
17 virtual bool isFalseFormula() const override;
18
19 virtual boost::any accept(FormulaVisitor const& visitor, boost::any const& data) const override;
20
21 virtual std::ostream& writeToStream(std::ostream& out, bool allowParentheses = false) const override;
22
23 private:
24 bool value;
25};
26} // namespace logic
27} // namespace storm
virtual bool isBooleanLiteralFormula() const override
virtual std::ostream & writeToStream(std::ostream &out, bool allowParentheses=false) const override
Writes the forumla to the given output stream.
virtual boost::any accept(FormulaVisitor const &visitor, boost::any const &data) const override
virtual bool isTrueFormula() const override
virtual bool isFalseFormula() const override