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.
29 lines
1.0 KiB
29 lines
1.0 KiB
#include "storm/abstraction/SymbolicQualitativeGameResultMinMax.h"
|
|
|
|
namespace storm {
|
|
namespace abstraction {
|
|
|
|
template<storm::dd::DdType Type>
|
|
SymbolicQualitativeResult<Type> const& SymbolicQualitativeGameResultMinMax<Type>::getProb0(storm::OptimizationDirection const& dir) const {
|
|
if (dir == storm::OptimizationDirection::Minimize) {
|
|
return prob0Min;
|
|
} else {
|
|
return prob0Max;
|
|
}
|
|
}
|
|
|
|
template<storm::dd::DdType Type>
|
|
SymbolicQualitativeResult<Type> const& SymbolicQualitativeGameResultMinMax<Type>::getProb1(storm::OptimizationDirection const& dir) const {
|
|
if (dir == storm::OptimizationDirection::Minimize) {
|
|
return prob1Min;
|
|
} else {
|
|
return prob1Max;
|
|
}
|
|
}
|
|
|
|
template class SymbolicQualitativeResultMinMax<storm::dd::DdType::CUDD>;
|
|
template class SymbolicQualitativeResultMinMax<storm::dd::DdType::Sylvan>;
|
|
|
|
}
|
|
}
|
|
|