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
436 B

#ifndef STORM_LOGIC_STATEFORMULA_H_
#define STORM_LOGIC_STATEFORMULA_H_
#include "src/logic/Formula.h"
namespace storm {
namespace logic {
class StateFormula : public Formula {
public:
virtual ~StateFormula() {
// Intentionally left empty.
};
virtual bool isStateFormula() const override;
};
}
}
#endif /* STORM_LOGIC_STATEFORMULA_H_ */