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
654 B
19 lines
654 B
#pragma once
|
|
|
|
#include "storm/utility/graph.h"
|
|
#include "storm/abstraction/SymbolicQualitativeResult.h"
|
|
|
|
namespace storm {
|
|
namespace abstraction {
|
|
|
|
template <storm::dd::DdType Type>
|
|
class SymbolicQualitativeGameResult : public storm::utility::graph::SymbolicGameProb01Result<Type>, public SymbolicQualitativeResult<Type> {
|
|
SymbolicQualitativeGameResult() = default;
|
|
|
|
SymbolicQualitativeGameResult(storm::utility::graph::SymbolicGameProb01Result<Type> const& prob01Result);
|
|
|
|
virtual storm::dd::Bdd<Type> const& getStates() const override;
|
|
};
|
|
|
|
}
|
|
}
|