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.
28 lines
837 B
28 lines
837 B
#ifndef STORM_LOGIC_UNARYBOOLEANSTATEFORMULA_H_
|
|
#define STORM_LOGIC_UNARYBOOLEANSTATEFORMULA_H_
|
|
|
|
#include "src/logic/UnaryStateFormula.h"
|
|
|
|
namespace storm {
|
|
namespace logic {
|
|
class UnaryBooleanStateFormula : public UnaryStateFormula {
|
|
public:
|
|
enum class OperatorType { Not };
|
|
|
|
UnaryBooleanStateFormula(OperatorType operatorType, std::shared_ptr<Formula> const& subformula);
|
|
|
|
virtual ~UnaryBooleanStateFormula() {
|
|
// Intentionally left empty.
|
|
};
|
|
|
|
virtual bool isUnaryBooleanStateFormula() const override;
|
|
|
|
virtual std::ostream& writeToStream(std::ostream& out) const override;
|
|
|
|
private:
|
|
OperatorType operatorType;
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif /* STORM_LOGIC_UNARYBOOLEANSTATEFORMULA_H_ */
|