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.
15 lines
415 B
15 lines
415 B
#ifndef STORM_MODELCHECKER_QUALITATIVECHECKRESULT_H_
|
|
#define STORM_MODELCHECKER_QUALITATIVECHECKRESULT_H_
|
|
|
|
#include "src/modelchecker/results/CheckResult.h"
|
|
|
|
namespace storm {
|
|
namespace modelchecker {
|
|
class QualitativeCheckResult : public CheckResult {
|
|
public:
|
|
virtual bool isQualitative() const override;
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif /* STORM_MODELCHECKER_QUALITATIVECHECKRESULT_H_ */
|