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.
 
 
 
 

25 lines
762 B

#include "storm/abstraction/SymbolicStateSet.h"
namespace storm {
namespace abstraction {
template<storm::dd::DdType Type>
SymbolicStateSet<Type>::SymbolicStateSet(storm::dd::Bdd<Type> const& states) : states(states) {
// Intentionally left empty.
}
template<storm::dd::DdType Type>
bool SymbolicStateSet<Type>::isSymbolic() const {
return true;
}
template<storm::dd::DdType Type>
storm::dd::Bdd<Type> const& SymbolicStateSet<Type>::getStates() const {
return states;
}
template class SymbolicStateSet<storm::dd::DdType::CUDD>;
template class SymbolicStateSet<storm::dd::DdType::Sylvan>;
}
}