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.
 
 
 
 

26 lines
728 B

#pragma once
#include "Counterexample.h"
#include "storm/storage/SymbolicModelDescription.h"
namespace storm {
namespace counterexamples {
class HighLevelCounterexample : public Counterexample {
public:
HighLevelCounterexample(storm::storage::SymbolicModelDescription const& model);
void writeToStream(std::ostream& out) const override;
bool isPrismHighLevelCounterexample() const;
bool isJaniHighLevelCounterexample() const;
storm::storage::SymbolicModelDescription const& getModelDescription() const;
private:
storm::storage::SymbolicModelDescription model;
};
}
}