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.

22 lines
509 B

  1. #ifndef STORM_LOGIC_STATEFORMULA_H_
  2. #define STORM_LOGIC_STATEFORMULA_H_
  3. #include "storm/logic/Formula.h"
  4. namespace storm {
  5. namespace logic {
  6. class StateFormula : public Formula {
  7. public:
  8. virtual ~StateFormula() {
  9. // Intentionally left empty.
  10. };
  11. virtual bool isStateFormula() const override;
  12. virtual bool isProbabilityPathFormula() const override;
  13. };
  14. }
  15. }
  16. #endif /* STORM_LOGIC_STATEFORMULA_H_ */