|
@ -70,7 +70,7 @@ namespace storm { |
|
|
if (this->relevantDontCareDdVariables.empty() || this->cubeCounter >= std::pow(2, this->relevantDontCareDdVariables.size()) - 1) { |
|
|
if (this->relevantDontCareDdVariables.empty() || this->cubeCounter >= std::pow(2, this->relevantDontCareDdVariables.size()) - 1) { |
|
|
// Get the next cube and check for emptiness.
|
|
|
// Get the next cube and check for emptiness.
|
|
|
ABDD::NextCube(generator, &cube, &value); |
|
|
ABDD::NextCube(generator, &cube, &value); |
|
|
this->isAtEnd = static_cast<bool>(Cudd_IsGenEmpty(generator)); |
|
|
|
|
|
|
|
|
this->isAtEnd = (Cudd_IsGenEmpty(generator) != 0); |
|
|
|
|
|
|
|
|
// In case we are not done yet, we get ready to treat the next cube.
|
|
|
// In case we are not done yet, we get ready to treat the next cube.
|
|
|
if (!this->isAtEnd) { |
|
|
if (!this->isAtEnd) { |
|
|