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.
 
 
 
 

35 lines
1.2 KiB

#ifndef STORM_LOGIC_UNARYPATHFORMULA_H_
#define STORM_LOGIC_UNARYPATHFORMULA_H_
#include <memory>
#include "src/logic/PathFormula.h"
namespace storm {
namespace logic {
class UnaryPathFormula : public PathFormula {
public:
UnaryPathFormula(std::shared_ptr<Formula const> const& subformula);
virtual ~UnaryPathFormula() {
// Intentionally left empty.
}
virtual bool isUnaryPathFormula() const override;
Formula const& getSubformula() const;
virtual void gatherAtomicExpressionFormulas(std::vector<std::shared_ptr<AtomicExpressionFormula const>>& atomicExpressionFormulas) const override;
virtual void gatherAtomicLabelFormulas(std::vector<std::shared_ptr<AtomicLabelFormula const>>& atomicLabelFormulas) const override;
virtual void gatherReferencedRewardModels(std::set<std::string>& referencedRewardModels) const override;
virtual bool hasQualitativeResult() const override;
virtual bool hasQuantitativeResult() const override;
private:
std::shared_ptr<Formula const> subformula;
};
}
}
#endif /* STORM_LOGIC_UNARYPATHFORMULA_H_ */