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
808 B
19 lines
808 B
#include "storm/abstraction/SymbolicQualitativeGameResult.h"
|
|
|
|
namespace storm {
|
|
namespace abstraction {
|
|
|
|
template <storm::dd::DdType Type>
|
|
SymbolicQualitativeGameResult<Type>::SymbolicQualitativeGameResult(storm::utility::graph::SymbolicGameProb01Result<Type> const& prob01Result) : storm::utility::graph::SymbolicGameProb01Result<Type>(prob01Result) {
|
|
// Intentionally left empty.
|
|
}
|
|
|
|
template <storm::dd::DdType Type>
|
|
storm::dd::Bdd<Type> const& SymbolicQualitativeGameResult<Type>::getStates() const {
|
|
return this->getPlayer1States();
|
|
}
|
|
|
|
template class SymbolicQualitativeGameResult<storm::dd::DdType::CUDD>;
|
|
template class SymbolicQualitativeGameResult<storm::dd::DdType::Sylvan>;
|
|
}
|
|
}
|