|
@ -25,12 +25,12 @@ namespace storm { |
|
|
InternalBdd<DdType::Sylvan>::InternalBdd(InternalDdManager<DdType::Sylvan> const* ddManager, sylvan::Bdd const& sylvanBdd) : ddManager(ddManager), sylvanBdd(sylvanBdd) { |
|
|
InternalBdd<DdType::Sylvan>::InternalBdd(InternalDdManager<DdType::Sylvan> const* ddManager, sylvan::Bdd const& sylvanBdd) : ddManager(ddManager), sylvanBdd(sylvanBdd) { |
|
|
// Intentionally left empty.
|
|
|
// Intentionally left empty.
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::fromVector(InternalDdManager<DdType::Sylvan> const* ddManager, Odd const& odd, std::vector<uint_fast64_t> const& sortedDdVariableIndices, std::function<bool (uint64_t)> const& filter) { |
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::fromVector(InternalDdManager<DdType::Sylvan> const* ddManager, Odd const& odd, std::vector<uint_fast64_t> const& sortedDdVariableIndices, std::function<bool (uint64_t)> const& filter) { |
|
|
uint_fast64_t offset = 0; |
|
|
uint_fast64_t offset = 0; |
|
|
return InternalBdd<DdType::Sylvan>(ddManager, sylvan::Bdd(fromVectorRec(offset, 0, sortedDdVariableIndices.size(), odd, sortedDdVariableIndices, filter))); |
|
|
return InternalBdd<DdType::Sylvan>(ddManager, sylvan::Bdd(fromVectorRec(offset, 0, sortedDdVariableIndices.size(), odd, sortedDdVariableIndices, filter))); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
BDD InternalBdd<DdType::Sylvan>::fromVectorRec(uint_fast64_t& currentOffset, uint_fast64_t currentLevel, uint_fast64_t maxLevel, Odd const& odd, std::vector<uint_fast64_t> const& ddVariableIndices, std::function<bool (uint64_t)> const& filter) { |
|
|
BDD InternalBdd<DdType::Sylvan>::fromVectorRec(uint_fast64_t& currentOffset, uint_fast64_t currentLevel, uint_fast64_t maxLevel, Odd const& odd, std::vector<uint_fast64_t> const& ddVariableIndices, std::function<bool (uint64_t)> const& filter) { |
|
|
if (currentLevel == maxLevel) { |
|
|
if (currentLevel == maxLevel) { |
|
|
// If we are in a terminal node of the ODD, we need to check whether the then-offset of the ODD is one
|
|
|
// If we are in a terminal node of the ODD, we need to check whether the then-offset of the ODD is one
|
|
@ -50,7 +50,7 @@ namespace storm { |
|
|
if (odd.getThenOffset() + odd.getElseOffset() == 0) { |
|
|
if (odd.getThenOffset() + odd.getElseOffset() == 0) { |
|
|
return sylvan_false; |
|
|
return sylvan_false; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Determine the new else-successor.
|
|
|
// Determine the new else-successor.
|
|
|
BDD elseSuccessor; |
|
|
BDD elseSuccessor; |
|
|
if (odd.getElseOffset() > 0) { |
|
|
if (odd.getElseOffset() > 0) { |
|
@ -59,7 +59,7 @@ namespace storm { |
|
|
elseSuccessor = sylvan_false; |
|
|
elseSuccessor = sylvan_false; |
|
|
} |
|
|
} |
|
|
bdd_refs_push(elseSuccessor); |
|
|
bdd_refs_push(elseSuccessor); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Determine the new then-successor.
|
|
|
// Determine the new then-successor.
|
|
|
BDD thenSuccessor; |
|
|
BDD thenSuccessor; |
|
|
if (odd.getThenOffset() > 0) { |
|
|
if (odd.getThenOffset() > 0) { |
|
@ -68,29 +68,29 @@ namespace storm { |
|
|
thenSuccessor = sylvan_false; |
|
|
thenSuccessor = sylvan_false; |
|
|
} |
|
|
} |
|
|
bdd_refs_push(thenSuccessor); |
|
|
bdd_refs_push(thenSuccessor); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Create a node representing ITE(currentVar, thenSuccessor, elseSuccessor);
|
|
|
// Create a node representing ITE(currentVar, thenSuccessor, elseSuccessor);
|
|
|
BDD currentVar = sylvan_ithvar(static_cast<BDDVAR>(ddVariableIndices[currentLevel])); |
|
|
BDD currentVar = sylvan_ithvar(static_cast<BDDVAR>(ddVariableIndices[currentLevel])); |
|
|
bdd_refs_push(currentVar); |
|
|
bdd_refs_push(currentVar); |
|
|
|
|
|
|
|
|
LACE_ME; |
|
|
LACE_ME; |
|
|
BDD result = sylvan_ite(currentVar, thenSuccessor, elseSuccessor); |
|
|
BDD result = sylvan_ite(currentVar, thenSuccessor, elseSuccessor); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Dispose of the intermediate results.
|
|
|
// Dispose of the intermediate results.
|
|
|
bdd_refs_pop(3); |
|
|
bdd_refs_pop(3); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return result; |
|
|
return result; |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool InternalBdd<DdType::Sylvan>::operator==(InternalBdd<DdType::Sylvan> const& other) const { |
|
|
bool InternalBdd<DdType::Sylvan>::operator==(InternalBdd<DdType::Sylvan> const& other) const { |
|
|
return sylvanBdd == other.sylvanBdd; |
|
|
return sylvanBdd == other.sylvanBdd; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool InternalBdd<DdType::Sylvan>::operator!=(InternalBdd<DdType::Sylvan> const& other) const { |
|
|
bool InternalBdd<DdType::Sylvan>::operator!=(InternalBdd<DdType::Sylvan> const& other) const { |
|
|
return sylvanBdd != other.sylvanBdd; |
|
|
return sylvanBdd != other.sylvanBdd; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::relationalProduct(InternalBdd<DdType::Sylvan> const& relation, std::vector<InternalBdd<DdType::Sylvan>> const&, std::vector<InternalBdd<DdType::Sylvan>> const&) const { |
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::relationalProduct(InternalBdd<DdType::Sylvan> const& relation, std::vector<InternalBdd<DdType::Sylvan>> const&, std::vector<InternalBdd<DdType::Sylvan>> const&) const { |
|
|
return InternalBdd<DdType::Sylvan>(ddManager, this->sylvanBdd.RelNext(relation.sylvanBdd, sylvan::Bdd(sylvan_false))); |
|
|
return InternalBdd<DdType::Sylvan>(ddManager, this->sylvanBdd.RelNext(relation.sylvanBdd, sylvan::Bdd(sylvan_false))); |
|
|
} |
|
|
} |
|
@ -98,10 +98,10 @@ namespace storm { |
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::inverseRelationalProduct(InternalBdd<DdType::Sylvan> const& relation, std::vector<InternalBdd<DdType::Sylvan>> const&, std::vector<InternalBdd<DdType::Sylvan>> const&) const { |
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::inverseRelationalProduct(InternalBdd<DdType::Sylvan> const& relation, std::vector<InternalBdd<DdType::Sylvan>> const&, std::vector<InternalBdd<DdType::Sylvan>> const&) const { |
|
|
return InternalBdd<DdType::Sylvan>(ddManager, this->sylvanBdd.RelPrev(relation.sylvanBdd, sylvan::Bdd(sylvan_false))); |
|
|
return InternalBdd<DdType::Sylvan>(ddManager, this->sylvanBdd.RelPrev(relation.sylvanBdd, sylvan::Bdd(sylvan_false))); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::inverseRelationalProductWithExtendedRelation(InternalBdd<DdType::Sylvan> const& relation, std::vector<InternalBdd<DdType::Sylvan>> const& rowVariables, std::vector<InternalBdd<DdType::Sylvan>> const& columnVariables) const { |
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::inverseRelationalProductWithExtendedRelation(InternalBdd<DdType::Sylvan> const& relation, std::vector<InternalBdd<DdType::Sylvan>> const& rowVariables, std::vector<InternalBdd<DdType::Sylvan>> const& columnVariables) const { |
|
|
// Currently, there is no specialized version to perform this operation, so we fall back to the regular operations.
|
|
|
// Currently, there is no specialized version to perform this operation, so we fall back to the regular operations.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
InternalBdd<DdType::Sylvan> columnCube = ddManager->getBddOne(); |
|
|
InternalBdd<DdType::Sylvan> columnCube = ddManager->getBddOne(); |
|
|
for (auto const& variable : columnVariables) { |
|
|
for (auto const& variable : columnVariables) { |
|
|
columnCube &= variable; |
|
|
columnCube &= variable; |
|
@ -109,79 +109,79 @@ namespace storm { |
|
|
|
|
|
|
|
|
return this->swapVariables(rowVariables, columnVariables).andExists(relation, columnCube); |
|
|
return this->swapVariables(rowVariables, columnVariables).andExists(relation, columnCube); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::ite(InternalBdd<DdType::Sylvan> const& thenDd, InternalBdd<DdType::Sylvan> const& elseDd) const { |
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::ite(InternalBdd<DdType::Sylvan> const& thenDd, InternalBdd<DdType::Sylvan> const& elseDd) const { |
|
|
return InternalBdd<DdType::Sylvan>(ddManager, this->sylvanBdd.Ite(thenDd.sylvanBdd, elseDd.sylvanBdd)); |
|
|
return InternalBdd<DdType::Sylvan>(ddManager, this->sylvanBdd.Ite(thenDd.sylvanBdd, elseDd.sylvanBdd)); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template<typename ValueType> |
|
|
template<typename ValueType> |
|
|
InternalAdd<DdType::Sylvan, ValueType> InternalBdd<DdType::Sylvan>::ite(InternalAdd<DdType::Sylvan, ValueType> const& thenAdd, InternalAdd<DdType::Sylvan, ValueType> const& elseAdd) const { |
|
|
InternalAdd<DdType::Sylvan, ValueType> InternalBdd<DdType::Sylvan>::ite(InternalAdd<DdType::Sylvan, ValueType> const& thenAdd, InternalAdd<DdType::Sylvan, ValueType> const& elseAdd) const { |
|
|
return InternalAdd<DdType::Sylvan, ValueType>(ddManager, this->sylvanBdd.Ite(thenAdd.getSylvanMtbdd(), elseAdd.getSylvanMtbdd())); |
|
|
return InternalAdd<DdType::Sylvan, ValueType>(ddManager, this->sylvanBdd.Ite(thenAdd.getSylvanMtbdd(), elseAdd.getSylvanMtbdd())); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::operator||(InternalBdd<DdType::Sylvan> const& other) const { |
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::operator||(InternalBdd<DdType::Sylvan> const& other) const { |
|
|
return InternalBdd<DdType::Sylvan>(ddManager, this->sylvanBdd | other.sylvanBdd); |
|
|
return InternalBdd<DdType::Sylvan>(ddManager, this->sylvanBdd | other.sylvanBdd); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
InternalBdd<DdType::Sylvan>& InternalBdd<DdType::Sylvan>::operator|=(InternalBdd<DdType::Sylvan> const& other) { |
|
|
InternalBdd<DdType::Sylvan>& InternalBdd<DdType::Sylvan>::operator|=(InternalBdd<DdType::Sylvan> const& other) { |
|
|
this->sylvanBdd |= other.sylvanBdd; |
|
|
this->sylvanBdd |= other.sylvanBdd; |
|
|
return *this; |
|
|
return *this; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::operator&&(InternalBdd<DdType::Sylvan> const& other) const { |
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::operator&&(InternalBdd<DdType::Sylvan> const& other) const { |
|
|
return InternalBdd<DdType::Sylvan>(ddManager, this->sylvanBdd & other.sylvanBdd); |
|
|
return InternalBdd<DdType::Sylvan>(ddManager, this->sylvanBdd & other.sylvanBdd); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
InternalBdd<DdType::Sylvan>& InternalBdd<DdType::Sylvan>::operator&=(InternalBdd<DdType::Sylvan> const& other) { |
|
|
InternalBdd<DdType::Sylvan>& InternalBdd<DdType::Sylvan>::operator&=(InternalBdd<DdType::Sylvan> const& other) { |
|
|
this->sylvanBdd &= other.sylvanBdd; |
|
|
this->sylvanBdd &= other.sylvanBdd; |
|
|
return *this; |
|
|
return *this; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::iff(InternalBdd<DdType::Sylvan> const& other) const { |
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::iff(InternalBdd<DdType::Sylvan> const& other) const { |
|
|
return InternalBdd<DdType::Sylvan>(ddManager, !(this->sylvanBdd ^ other.sylvanBdd)); |
|
|
return InternalBdd<DdType::Sylvan>(ddManager, !(this->sylvanBdd ^ other.sylvanBdd)); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::exclusiveOr(InternalBdd<DdType::Sylvan> const& other) const { |
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::exclusiveOr(InternalBdd<DdType::Sylvan> const& other) const { |
|
|
return InternalBdd<DdType::Sylvan>(ddManager, this->sylvanBdd ^ other.sylvanBdd); |
|
|
return InternalBdd<DdType::Sylvan>(ddManager, this->sylvanBdd ^ other.sylvanBdd); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::implies(InternalBdd<DdType::Sylvan> const& other) const { |
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::implies(InternalBdd<DdType::Sylvan> const& other) const { |
|
|
return InternalBdd<DdType::Sylvan>(ddManager, (!this->sylvanBdd) | other.sylvanBdd); |
|
|
return InternalBdd<DdType::Sylvan>(ddManager, (!this->sylvanBdd) | other.sylvanBdd); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::operator!() const { |
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::operator!() const { |
|
|
return InternalBdd<DdType::Sylvan>(ddManager, !this->sylvanBdd); |
|
|
return InternalBdd<DdType::Sylvan>(ddManager, !this->sylvanBdd); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
InternalBdd<DdType::Sylvan>& InternalBdd<DdType::Sylvan>::complement() { |
|
|
InternalBdd<DdType::Sylvan>& InternalBdd<DdType::Sylvan>::complement() { |
|
|
this->sylvanBdd = !this->sylvanBdd; |
|
|
this->sylvanBdd = !this->sylvanBdd; |
|
|
return *this; |
|
|
return *this; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::existsAbstract(InternalBdd<DdType::Sylvan> const& cube) const { |
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::existsAbstract(InternalBdd<DdType::Sylvan> const& cube) const { |
|
|
return InternalBdd<DdType::Sylvan>(ddManager, this->sylvanBdd.ExistAbstract(cube.sylvanBdd)); |
|
|
return InternalBdd<DdType::Sylvan>(ddManager, this->sylvanBdd.ExistAbstract(cube.sylvanBdd)); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::existsAbstractRepresentative(InternalBdd<DdType::Sylvan> const& cube) const { |
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::existsAbstractRepresentative(InternalBdd<DdType::Sylvan> const& cube) const { |
|
|
return InternalBdd<DdType::Sylvan>(ddManager, this->sylvanBdd.ExistAbstractRepresentative(cube.sylvanBdd)); |
|
|
return InternalBdd<DdType::Sylvan>(ddManager, this->sylvanBdd.ExistAbstractRepresentative(cube.sylvanBdd)); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::universalAbstract(InternalBdd<DdType::Sylvan> const& cube) const { |
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::universalAbstract(InternalBdd<DdType::Sylvan> const& cube) const { |
|
|
return InternalBdd<DdType::Sylvan>(ddManager, this->sylvanBdd.UnivAbstract(cube.sylvanBdd)); |
|
|
return InternalBdd<DdType::Sylvan>(ddManager, this->sylvanBdd.UnivAbstract(cube.sylvanBdd)); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::andExists(InternalBdd<DdType::Sylvan> const& other, InternalBdd<DdType::Sylvan> const& cube) const { |
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::andExists(InternalBdd<DdType::Sylvan> const& other, InternalBdd<DdType::Sylvan> const& cube) const { |
|
|
return InternalBdd<DdType::Sylvan>(ddManager, this->sylvanBdd.AndAbstract(other.sylvanBdd, cube.sylvanBdd)); |
|
|
return InternalBdd<DdType::Sylvan>(ddManager, this->sylvanBdd.AndAbstract(other.sylvanBdd, cube.sylvanBdd)); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::constrain(InternalBdd<DdType::Sylvan> const& constraint) const { |
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::constrain(InternalBdd<DdType::Sylvan> const& constraint) const { |
|
|
return InternalBdd<DdType::Sylvan>(ddManager, this->sylvanBdd.Constrain(constraint.sylvanBdd)); |
|
|
return InternalBdd<DdType::Sylvan>(ddManager, this->sylvanBdd.Constrain(constraint.sylvanBdd)); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::restrict(InternalBdd<DdType::Sylvan> const& constraint) const { |
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::restrict(InternalBdd<DdType::Sylvan> const& constraint) const { |
|
|
return InternalBdd<DdType::Sylvan>(ddManager, this->sylvanBdd.Restrict(constraint.sylvanBdd)); |
|
|
return InternalBdd<DdType::Sylvan>(ddManager, this->sylvanBdd.Restrict(constraint.sylvanBdd)); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::swapVariables(std::vector<InternalBdd<DdType::Sylvan>> const& from, std::vector<InternalBdd<DdType::Sylvan>> const& to) const { |
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::swapVariables(std::vector<InternalBdd<DdType::Sylvan>> const& from, std::vector<InternalBdd<DdType::Sylvan>> const& to) const { |
|
|
std::vector<uint32_t> fromIndices; |
|
|
std::vector<uint32_t> fromIndices; |
|
|
std::vector<uint32_t> toIndices; |
|
|
std::vector<uint32_t> toIndices; |
|
@ -193,45 +193,45 @@ namespace storm { |
|
|
} |
|
|
} |
|
|
return InternalBdd<DdType::Sylvan>(ddManager, this->sylvanBdd.Permute(fromIndices, toIndices)); |
|
|
return InternalBdd<DdType::Sylvan>(ddManager, this->sylvanBdd.Permute(fromIndices, toIndices)); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::getSupport() const { |
|
|
InternalBdd<DdType::Sylvan> InternalBdd<DdType::Sylvan>::getSupport() const { |
|
|
return InternalBdd<DdType::Sylvan>(ddManager, this->sylvanBdd.Support()); |
|
|
return InternalBdd<DdType::Sylvan>(ddManager, this->sylvanBdd.Support()); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
uint_fast64_t InternalBdd<DdType::Sylvan>::getNonZeroCount(uint_fast64_t numberOfDdVariables) const { |
|
|
uint_fast64_t InternalBdd<DdType::Sylvan>::getNonZeroCount(uint_fast64_t numberOfDdVariables) const { |
|
|
if (numberOfDdVariables == 0) { |
|
|
if (numberOfDdVariables == 0) { |
|
|
return 0; |
|
|
return 0; |
|
|
} |
|
|
} |
|
|
return static_cast<uint_fast64_t>(this->sylvanBdd.SatCount(numberOfDdVariables)); |
|
|
return static_cast<uint_fast64_t>(this->sylvanBdd.SatCount(numberOfDdVariables)); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
uint_fast64_t InternalBdd<DdType::Sylvan>::getLeafCount() const { |
|
|
uint_fast64_t InternalBdd<DdType::Sylvan>::getLeafCount() const { |
|
|
// For BDDs, the leaf count is always one, because the only leaf is the false leaf (and true is represented
|
|
|
// For BDDs, the leaf count is always one, because the only leaf is the false leaf (and true is represented
|
|
|
// by a negation edge to false).
|
|
|
// by a negation edge to false).
|
|
|
return 1; |
|
|
return 1; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
uint_fast64_t InternalBdd<DdType::Sylvan>::getNodeCount() const { |
|
|
uint_fast64_t InternalBdd<DdType::Sylvan>::getNodeCount() const { |
|
|
// We have to add one to also count the false-leaf, which is the only leaf appearing in BDDs.
|
|
|
// We have to add one to also count the false-leaf, which is the only leaf appearing in BDDs.
|
|
|
return static_cast<uint_fast64_t>(this->sylvanBdd.NodeCount()); |
|
|
return static_cast<uint_fast64_t>(this->sylvanBdd.NodeCount()); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool InternalBdd<DdType::Sylvan>::isOne() const { |
|
|
bool InternalBdd<DdType::Sylvan>::isOne() const { |
|
|
return this->sylvanBdd.isOne(); |
|
|
return this->sylvanBdd.isOne(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool InternalBdd<DdType::Sylvan>::isZero() const { |
|
|
bool InternalBdd<DdType::Sylvan>::isZero() const { |
|
|
return this->sylvanBdd.isZero(); |
|
|
return this->sylvanBdd.isZero(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
uint_fast64_t InternalBdd<DdType::Sylvan>::getIndex() const { |
|
|
uint_fast64_t InternalBdd<DdType::Sylvan>::getIndex() const { |
|
|
return static_cast<uint_fast64_t>(this->sylvanBdd.TopVar()); |
|
|
return static_cast<uint_fast64_t>(this->sylvanBdd.TopVar()); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
uint_fast64_t InternalBdd<DdType::Sylvan>::getLevel() const { |
|
|
uint_fast64_t InternalBdd<DdType::Sylvan>::getLevel() const { |
|
|
return this->getIndex(); |
|
|
return this->getIndex(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void InternalBdd<DdType::Sylvan>::exportToDot(std::string const& filename, std::vector<std::string> const&, bool) const { |
|
|
void InternalBdd<DdType::Sylvan>::exportToDot(std::string const& filename, std::vector<std::string> const&, bool) const { |
|
|
FILE* filePointer = fopen(filename.c_str() , "a+"); |
|
|
FILE* filePointer = fopen(filename.c_str() , "a+"); |
|
|
this->sylvanBdd.PrintDot(filePointer); |
|
|
this->sylvanBdd.PrintDot(filePointer); |
|
@ -243,41 +243,41 @@ namespace storm { |
|
|
this->sylvanBdd.PrintText(filePointer); |
|
|
this->sylvanBdd.PrintText(filePointer); |
|
|
fclose(filePointer); |
|
|
fclose(filePointer); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sylvan::Bdd& InternalBdd<DdType::Sylvan>::getSylvanBdd() { |
|
|
sylvan::Bdd& InternalBdd<DdType::Sylvan>::getSylvanBdd() { |
|
|
return sylvanBdd; |
|
|
return sylvanBdd; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sylvan::Bdd const& InternalBdd<DdType::Sylvan>::getSylvanBdd() const { |
|
|
sylvan::Bdd const& InternalBdd<DdType::Sylvan>::getSylvanBdd() const { |
|
|
return sylvanBdd; |
|
|
return sylvanBdd; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template<typename ValueType> |
|
|
template<typename ValueType> |
|
|
InternalAdd<DdType::Sylvan, ValueType> InternalBdd<DdType::Sylvan>::toAdd() const { |
|
|
InternalAdd<DdType::Sylvan, ValueType> InternalBdd<DdType::Sylvan>::toAdd() const { |
|
|
if (std::is_same<ValueType, double>::value) { |
|
|
if (std::is_same<ValueType, double>::value) { |
|
|
return InternalAdd<DdType::Sylvan, ValueType>(ddManager, this->sylvanBdd.toDoubleMtbdd()); |
|
|
return InternalAdd<DdType::Sylvan, ValueType>(ddManager, this->sylvanBdd.toDoubleMtbdd()); |
|
|
} else if (std::is_same<ValueType, uint_fast64_t>::value) { |
|
|
} else if (std::is_same<ValueType, uint_fast64_t>::value) { |
|
|
return InternalAdd<DdType::Sylvan, ValueType>(ddManager, this->sylvanBdd.toInt64Mtbdd()); |
|
|
return InternalAdd<DdType::Sylvan, ValueType>(ddManager, this->sylvanBdd.toInt64Mtbdd()); |
|
|
} |
|
|
|
|
|
|
|
|
} |
|
|
#ifdef STORM_HAVE_CARL
|
|
|
#ifdef STORM_HAVE_CARL
|
|
|
else if (std::is_same<ValueType, storm::RationalNumber>::value) { |
|
|
else if (std::is_same<ValueType, storm::RationalNumber>::value) { |
|
|
return InternalAdd<DdType::Sylvan, ValueType>(ddManager, this->sylvanBdd.toStormRationalNumberMtbdd()); |
|
|
return InternalAdd<DdType::Sylvan, ValueType>(ddManager, this->sylvanBdd.toStormRationalNumberMtbdd()); |
|
|
} |
|
|
|
|
|
|
|
|
} |
|
|
else if (std::is_same<ValueType, storm::RationalFunction>::value) { |
|
|
else if (std::is_same<ValueType, storm::RationalFunction>::value) { |
|
|
return InternalAdd<DdType::Sylvan, ValueType>(ddManager, this->sylvanBdd.toStormRationalFunctionMtbdd()); |
|
|
return InternalAdd<DdType::Sylvan, ValueType>(ddManager, this->sylvanBdd.toStormRationalFunctionMtbdd()); |
|
|
} |
|
|
|
|
|
|
|
|
} |
|
|
#endif
|
|
|
#endif
|
|
|
else { |
|
|
else { |
|
|
STORM_LOG_THROW(false, storm::exceptions::InvalidOperationException, "Illegal ADD type."); |
|
|
STORM_LOG_THROW(false, storm::exceptions::InvalidOperationException, "Illegal ADD type."); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
storm::storage::BitVector InternalBdd<DdType::Sylvan>::toVector(storm::dd::Odd const& rowOdd, std::vector<uint_fast64_t> const& ddVariableIndices) const { |
|
|
storm::storage::BitVector InternalBdd<DdType::Sylvan>::toVector(storm::dd::Odd const& rowOdd, std::vector<uint_fast64_t> const& ddVariableIndices) const { |
|
|
storm::storage::BitVector result(rowOdd.getTotalOffset()); |
|
|
storm::storage::BitVector result(rowOdd.getTotalOffset()); |
|
|
this->toVectorRec(bdd_regular(this->getSylvanBdd().GetBDD()), result, rowOdd, bdd_isnegated(this->getSylvanBdd().GetBDD()), 0, ddVariableIndices.size(), 0, ddVariableIndices); |
|
|
this->toVectorRec(bdd_regular(this->getSylvanBdd().GetBDD()), result, rowOdd, bdd_isnegated(this->getSylvanBdd().GetBDD()), 0, ddVariableIndices.size(), 0, ddVariableIndices); |
|
|
return result; |
|
|
return result; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void InternalBdd<DdType::Sylvan>::toVectorRec(BDD dd, storm::storage::BitVector& result, Odd const& rowOdd, bool complement, uint_fast64_t currentRowLevel, uint_fast64_t maxLevel, uint_fast64_t currentRowOffset, std::vector<uint_fast64_t> const& ddRowVariableIndices) const { |
|
|
void InternalBdd<DdType::Sylvan>::toVectorRec(BDD dd, storm::storage::BitVector& result, Odd const& rowOdd, bool complement, uint_fast64_t currentRowLevel, uint_fast64_t maxLevel, uint_fast64_t currentRowOffset, std::vector<uint_fast64_t> const& ddRowVariableIndices) const { |
|
|
// If there are no more values to select, we can directly return.
|
|
|
// If there are no more values to select, we can directly return.
|
|
|
if (dd == sylvan_false && !complement) { |
|
|
if (dd == sylvan_false && !complement) { |
|
@ -285,7 +285,7 @@ namespace storm { |
|
|
} else if (dd == sylvan_true && complement) { |
|
|
} else if (dd == sylvan_true && complement) { |
|
|
return; |
|
|
return; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// If we are at the maximal level, the value to be set is stored as a constant in the DD.
|
|
|
// If we are at the maximal level, the value to be set is stored as a constant in the DD.
|
|
|
if (currentRowLevel == maxLevel) { |
|
|
if (currentRowLevel == maxLevel) { |
|
|
result.set(currentRowOffset, true); |
|
|
result.set(currentRowOffset, true); |
|
@ -296,34 +296,34 @@ namespace storm { |
|
|
// Otherwise, we compute the ODDs for both the then- and else successors.
|
|
|
// Otherwise, we compute the ODDs for both the then- and else successors.
|
|
|
BDD elseDdNode = sylvan_low(dd); |
|
|
BDD elseDdNode = sylvan_low(dd); |
|
|
BDD thenDdNode = sylvan_high(dd); |
|
|
BDD thenDdNode = sylvan_high(dd); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Determine whether we have to evaluate the successors as if they were complemented.
|
|
|
// Determine whether we have to evaluate the successors as if they were complemented.
|
|
|
bool elseComplemented = bdd_isnegated(elseDdNode) ^ complement; |
|
|
bool elseComplemented = bdd_isnegated(elseDdNode) ^ complement; |
|
|
bool thenComplemented = bdd_isnegated(thenDdNode) ^ complement; |
|
|
bool thenComplemented = bdd_isnegated(thenDdNode) ^ complement; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
toVectorRec(bdd_regular(elseDdNode), result, rowOdd.getElseSuccessor(), elseComplemented, currentRowLevel + 1, maxLevel, currentRowOffset, ddRowVariableIndices); |
|
|
toVectorRec(bdd_regular(elseDdNode), result, rowOdd.getElseSuccessor(), elseComplemented, currentRowLevel + 1, maxLevel, currentRowOffset, ddRowVariableIndices); |
|
|
toVectorRec(bdd_regular(thenDdNode), result, rowOdd.getThenSuccessor(), thenComplemented, currentRowLevel + 1, maxLevel, currentRowOffset + rowOdd.getElseOffset(), ddRowVariableIndices); |
|
|
toVectorRec(bdd_regular(thenDdNode), result, rowOdd.getThenSuccessor(), thenComplemented, currentRowLevel + 1, maxLevel, currentRowOffset + rowOdd.getElseOffset(), ddRowVariableIndices); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Odd InternalBdd<DdType::Sylvan>::createOdd(std::vector<uint_fast64_t> const& ddVariableIndices) const { |
|
|
Odd InternalBdd<DdType::Sylvan>::createOdd(std::vector<uint_fast64_t> const& ddVariableIndices) const { |
|
|
// Prepare a unique table for each level that keeps the constructed ODD nodes unique.
|
|
|
// Prepare a unique table for each level that keeps the constructed ODD nodes unique.
|
|
|
std::vector<std::unordered_map<std::pair<BDD, bool>, std::shared_ptr<Odd>, HashFunctor>> uniqueTableForLevels(ddVariableIndices.size() + 1); |
|
|
std::vector<std::unordered_map<std::pair<BDD, bool>, std::shared_ptr<Odd>, HashFunctor>> uniqueTableForLevels(ddVariableIndices.size() + 1); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Now construct the ODD structure from the BDD.
|
|
|
// Now construct the ODD structure from the BDD.
|
|
|
std::shared_ptr<Odd> rootOdd = createOddRec(bdd_regular(this->getSylvanBdd().GetBDD()), bdd_isnegated(this->getSylvanBdd().GetBDD()), 0, ddVariableIndices.size(), ddVariableIndices, uniqueTableForLevels); |
|
|
std::shared_ptr<Odd> rootOdd = createOddRec(bdd_regular(this->getSylvanBdd().GetBDD()), bdd_isnegated(this->getSylvanBdd().GetBDD()), 0, ddVariableIndices.size(), ddVariableIndices, uniqueTableForLevels); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Return a copy of the root node to remove the shared_ptr encapsulation.
|
|
|
// Return a copy of the root node to remove the shared_ptr encapsulation.
|
|
|
return Odd(*rootOdd); |
|
|
return Odd(*rootOdd); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
std::size_t InternalBdd<DdType::Sylvan>::HashFunctor::operator()(std::pair<BDD, bool> const& key) const { |
|
|
std::size_t InternalBdd<DdType::Sylvan>::HashFunctor::operator()(std::pair<BDD, bool> const& key) const { |
|
|
std::size_t result = 0; |
|
|
std::size_t result = 0; |
|
|
boost::hash_combine(result, key.first); |
|
|
boost::hash_combine(result, key.first); |
|
|
boost::hash_combine(result, key.second); |
|
|
boost::hash_combine(result, key.second); |
|
|
return result; |
|
|
return result; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
std::shared_ptr<Odd> InternalBdd<DdType::Sylvan>::createOddRec(BDD dd, bool complement, uint_fast64_t currentLevel, uint_fast64_t maxLevel, std::vector<uint_fast64_t> const& ddVariableIndices, std::vector<std::unordered_map<std::pair<BDD, bool>, std::shared_ptr<Odd>, HashFunctor>>& uniqueTableForLevels) { |
|
|
std::shared_ptr<Odd> InternalBdd<DdType::Sylvan>::createOddRec(BDD dd, bool complement, uint_fast64_t currentLevel, uint_fast64_t maxLevel, std::vector<uint_fast64_t> const& ddVariableIndices, std::vector<std::unordered_map<std::pair<BDD, bool>, std::shared_ptr<Odd>, HashFunctor>>& uniqueTableForLevels) { |
|
|
// Check whether the ODD for this node has already been computed (for this level) and if so, return this instead.
|
|
|
// Check whether the ODD for this node has already been computed (for this level) and if so, return this instead.
|
|
|
auto const& iterator = uniqueTableForLevels[currentLevel].find(std::make_pair(dd, complement)); |
|
|
auto const& iterator = uniqueTableForLevels[currentLevel].find(std::make_pair(dd, complement)); |
|
@ -331,23 +331,23 @@ namespace storm { |
|
|
return iterator->second; |
|
|
return iterator->second; |
|
|
} else { |
|
|
} else { |
|
|
// Otherwise, we need to recursively compute the ODD.
|
|
|
// Otherwise, we need to recursively compute the ODD.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// If we are already at the maximal level that is to be considered, we can simply create an Odd without
|
|
|
// If we are already at the maximal level that is to be considered, we can simply create an Odd without
|
|
|
// successors.
|
|
|
// successors.
|
|
|
if (currentLevel == maxLevel) { |
|
|
if (currentLevel == maxLevel) { |
|
|
uint_fast64_t elseOffset = 0; |
|
|
uint_fast64_t elseOffset = 0; |
|
|
uint_fast64_t thenOffset = 0; |
|
|
uint_fast64_t thenOffset = 0; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// If the DD is not the zero leaf, then the then-offset is 1.
|
|
|
// If the DD is not the zero leaf, then the then-offset is 1.
|
|
|
if (dd != mtbdd_false) { |
|
|
if (dd != mtbdd_false) { |
|
|
thenOffset = 1; |
|
|
thenOffset = 1; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// If we need to complement the 'terminal' node, we need to negate its offset.
|
|
|
// If we need to complement the 'terminal' node, we need to negate its offset.
|
|
|
if (complement) { |
|
|
if (complement) { |
|
|
thenOffset = 1 - thenOffset; |
|
|
thenOffset = 1 - thenOffset; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
auto oddNode = std::make_shared<Odd>(nullptr, elseOffset, nullptr, thenOffset); |
|
|
auto oddNode = std::make_shared<Odd>(nullptr, elseOffset, nullptr, thenOffset); |
|
|
uniqueTableForLevels[currentLevel].emplace(std::make_pair(dd, complement), oddNode); |
|
|
uniqueTableForLevels[currentLevel].emplace(std::make_pair(dd, complement), oddNode); |
|
|
return oddNode; |
|
|
return oddNode; |
|
@ -368,23 +368,23 @@ namespace storm { |
|
|
// Determine whether we have to evaluate the successors as if they were complemented.
|
|
|
// Determine whether we have to evaluate the successors as if they were complemented.
|
|
|
bool elseComplemented = bdd_isnegated(elseDdNode) ^ complement; |
|
|
bool elseComplemented = bdd_isnegated(elseDdNode) ^ complement; |
|
|
bool thenComplemented = bdd_isnegated(thenDdNode) ^ complement; |
|
|
bool thenComplemented = bdd_isnegated(thenDdNode) ^ complement; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
std::shared_ptr<Odd> elseNode = createOddRec(bdd_regular(elseDdNode), elseComplemented, currentLevel + 1, maxLevel, ddVariableIndices, uniqueTableForLevels); |
|
|
std::shared_ptr<Odd> elseNode = createOddRec(bdd_regular(elseDdNode), elseComplemented, currentLevel + 1, maxLevel, ddVariableIndices, uniqueTableForLevels); |
|
|
std::shared_ptr<Odd> thenNode = createOddRec(bdd_regular(thenDdNode), thenComplemented, currentLevel + 1, maxLevel, ddVariableIndices, uniqueTableForLevels); |
|
|
std::shared_ptr<Odd> thenNode = createOddRec(bdd_regular(thenDdNode), thenComplemented, currentLevel + 1, maxLevel, ddVariableIndices, uniqueTableForLevels); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
auto oddNode = std::make_shared<Odd>(elseNode, elseNode->getElseOffset() + elseNode->getThenOffset(), thenNode, thenNode->getElseOffset() + thenNode->getThenOffset()); |
|
|
auto oddNode = std::make_shared<Odd>(elseNode, elseNode->getElseOffset() + elseNode->getThenOffset(), thenNode, thenNode->getElseOffset() + thenNode->getThenOffset()); |
|
|
uniqueTableForLevels[currentLevel].emplace(std::make_pair(dd, complement), oddNode); |
|
|
uniqueTableForLevels[currentLevel].emplace(std::make_pair(dd, complement), oddNode); |
|
|
return oddNode; |
|
|
return oddNode; |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template<typename ValueType> |
|
|
template<typename ValueType> |
|
|
void InternalBdd<DdType::Sylvan>::filterExplicitVector(Odd const& odd, std::vector<uint_fast64_t> const& ddVariableIndices, std::vector<ValueType> const& sourceValues, std::vector<ValueType>& targetValues) const { |
|
|
void InternalBdd<DdType::Sylvan>::filterExplicitVector(Odd const& odd, std::vector<uint_fast64_t> const& ddVariableIndices, std::vector<ValueType> const& sourceValues, std::vector<ValueType>& targetValues) const { |
|
|
uint_fast64_t currentIndex = 0; |
|
|
uint_fast64_t currentIndex = 0; |
|
|
filterExplicitVectorRec(bdd_regular(this->getSylvanBdd().GetBDD()), 0, bdd_isnegated(this->getSylvanBdd().GetBDD()), ddVariableIndices.size(), ddVariableIndices, 0, odd, targetValues, currentIndex, sourceValues); |
|
|
filterExplicitVectorRec(bdd_regular(this->getSylvanBdd().GetBDD()), 0, bdd_isnegated(this->getSylvanBdd().GetBDD()), ddVariableIndices.size(), ddVariableIndices, 0, odd, targetValues, currentIndex, sourceValues); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template<typename ValueType> |
|
|
template<typename ValueType> |
|
|
void InternalBdd<DdType::Sylvan>::filterExplicitVectorRec(BDD dd, uint_fast64_t currentLevel, bool complement, uint_fast64_t maxLevel, std::vector<uint_fast64_t> const& ddVariableIndices, uint_fast64_t currentOffset, storm::dd::Odd const& odd, std::vector<ValueType>& result, uint_fast64_t& currentIndex, std::vector<ValueType> const& values) { |
|
|
void InternalBdd<DdType::Sylvan>::filterExplicitVectorRec(BDD dd, uint_fast64_t currentLevel, bool complement, uint_fast64_t maxLevel, std::vector<uint_fast64_t> const& ddVariableIndices, uint_fast64_t currentOffset, storm::dd::Odd const& odd, std::vector<ValueType>& result, uint_fast64_t& currentIndex, std::vector<ValueType> const& values) { |
|
|
// If there are no more values to select, we can directly return.
|
|
|
// If there are no more values to select, we can directly return.
|
|
@ -393,7 +393,7 @@ namespace storm { |
|
|
} else if (dd == sylvan_true && complement) { |
|
|
} else if (dd == sylvan_true && complement) { |
|
|
return; |
|
|
return; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (currentLevel == maxLevel) { |
|
|
if (currentLevel == maxLevel) { |
|
|
result[currentIndex++] = values[currentOffset]; |
|
|
result[currentIndex++] = values[currentOffset]; |
|
|
} else if (bdd_isterminal(dd) || ddVariableIndices[currentLevel] < sylvan_var(dd)) { |
|
|
} else if (bdd_isterminal(dd) || ddVariableIndices[currentLevel] < sylvan_var(dd)) { |
|
@ -405,21 +405,21 @@ namespace storm { |
|
|
// Otherwise, we compute the ODDs for both the then- and else successors.
|
|
|
// Otherwise, we compute the ODDs for both the then- and else successors.
|
|
|
BDD thenDdNode = sylvan_high(dd); |
|
|
BDD thenDdNode = sylvan_high(dd); |
|
|
BDD elseDdNode = sylvan_low(dd); |
|
|
BDD elseDdNode = sylvan_low(dd); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Determine whether we have to evaluate the successors as if they were complemented.
|
|
|
// Determine whether we have to evaluate the successors as if they were complemented.
|
|
|
bool elseComplemented = bdd_isnegated(elseDdNode) ^ complement; |
|
|
bool elseComplemented = bdd_isnegated(elseDdNode) ^ complement; |
|
|
bool thenComplemented = bdd_isnegated(thenDdNode) ^ complement; |
|
|
bool thenComplemented = bdd_isnegated(thenDdNode) ^ complement; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
filterExplicitVectorRec(bdd_regular(elseDdNode), currentLevel + 1, elseComplemented, maxLevel, ddVariableIndices, currentOffset, odd.getElseSuccessor(), result, currentIndex, values); |
|
|
filterExplicitVectorRec(bdd_regular(elseDdNode), currentLevel + 1, elseComplemented, maxLevel, ddVariableIndices, currentOffset, odd.getElseSuccessor(), result, currentIndex, values); |
|
|
filterExplicitVectorRec(bdd_regular(thenDdNode), currentLevel + 1, thenComplemented, maxLevel, ddVariableIndices, currentOffset + odd.getElseOffset(), odd.getThenSuccessor(), result, currentIndex, values); |
|
|
filterExplicitVectorRec(bdd_regular(thenDdNode), currentLevel + 1, thenComplemented, maxLevel, ddVariableIndices, currentOffset + odd.getElseOffset(), odd.getThenSuccessor(), result, currentIndex, values); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void InternalBdd<DdType::Sylvan>::filterExplicitVector(Odd const& odd, std::vector<uint_fast64_t> const& ddVariableIndices, storm::storage::BitVector const& sourceValues, storm::storage::BitVector& targetValues) const { |
|
|
void InternalBdd<DdType::Sylvan>::filterExplicitVector(Odd const& odd, std::vector<uint_fast64_t> const& ddVariableIndices, storm::storage::BitVector const& sourceValues, storm::storage::BitVector& targetValues) const { |
|
|
uint_fast64_t currentIndex = 0; |
|
|
uint_fast64_t currentIndex = 0; |
|
|
filterExplicitVectorRec(bdd_regular(this->getSylvanBdd().GetBDD()), 0, bdd_isnegated(this->getSylvanBdd().GetBDD()), ddVariableIndices.size(), ddVariableIndices, 0, odd, targetValues, currentIndex, sourceValues); |
|
|
filterExplicitVectorRec(bdd_regular(this->getSylvanBdd().GetBDD()), 0, bdd_isnegated(this->getSylvanBdd().GetBDD()), ddVariableIndices.size(), ddVariableIndices, 0, odd, targetValues, currentIndex, sourceValues); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void InternalBdd<DdType::Sylvan>::filterExplicitVectorRec(BDD dd, uint_fast64_t currentLevel, bool complement, uint_fast64_t maxLevel, std::vector<uint_fast64_t> const& ddVariableIndices, uint_fast64_t currentOffset, storm::dd::Odd const& odd, storm::storage::BitVector& result, uint_fast64_t& currentIndex, storm::storage::BitVector const& values) { |
|
|
void InternalBdd<DdType::Sylvan>::filterExplicitVectorRec(BDD dd, uint_fast64_t currentLevel, bool complement, uint_fast64_t maxLevel, std::vector<uint_fast64_t> const& ddVariableIndices, uint_fast64_t currentOffset, storm::dd::Odd const& odd, storm::storage::BitVector& result, uint_fast64_t& currentIndex, storm::storage::BitVector const& values) { |
|
|
// If there are no more values to select, we can directly return.
|
|
|
// If there are no more values to select, we can directly return.
|
|
|
if (dd == sylvan_false && !complement) { |
|
|
if (dd == sylvan_false && !complement) { |
|
@ -427,7 +427,7 @@ namespace storm { |
|
|
} else if (dd == sylvan_true && complement) { |
|
|
} else if (dd == sylvan_true && complement) { |
|
|
return; |
|
|
return; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (currentLevel == maxLevel) { |
|
|
if (currentLevel == maxLevel) { |
|
|
result.set(currentIndex++, values.get(currentOffset)); |
|
|
result.set(currentIndex++, values.get(currentOffset)); |
|
|
} else if (bdd_isterminal(dd) || ddVariableIndices[currentLevel] < sylvan_var(dd)) { |
|
|
} else if (bdd_isterminal(dd) || ddVariableIndices[currentLevel] < sylvan_var(dd)) { |
|
@ -439,28 +439,28 @@ namespace storm { |
|
|
// Otherwise, we compute the ODDs for both the then- and else successors.
|
|
|
// Otherwise, we compute the ODDs for both the then- and else successors.
|
|
|
BDD thenDdNode = sylvan_high(dd); |
|
|
BDD thenDdNode = sylvan_high(dd); |
|
|
BDD elseDdNode = sylvan_low(dd); |
|
|
BDD elseDdNode = sylvan_low(dd); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Determine whether we have to evaluate the successors as if they were complemented.
|
|
|
// Determine whether we have to evaluate the successors as if they were complemented.
|
|
|
bool elseComplemented = bdd_isnegated(elseDdNode) ^ complement; |
|
|
bool elseComplemented = bdd_isnegated(elseDdNode) ^ complement; |
|
|
bool thenComplemented = bdd_isnegated(thenDdNode) ^ complement; |
|
|
bool thenComplemented = bdd_isnegated(thenDdNode) ^ complement; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
filterExplicitVectorRec(bdd_regular(elseDdNode), currentLevel + 1, elseComplemented, maxLevel, ddVariableIndices, currentOffset, odd.getElseSuccessor(), result, currentIndex, values); |
|
|
filterExplicitVectorRec(bdd_regular(elseDdNode), currentLevel + 1, elseComplemented, maxLevel, ddVariableIndices, currentOffset, odd.getElseSuccessor(), result, currentIndex, values); |
|
|
filterExplicitVectorRec(bdd_regular(thenDdNode), currentLevel + 1, thenComplemented, maxLevel, ddVariableIndices, currentOffset + odd.getElseOffset(), odd.getThenSuccessor(), result, currentIndex, values); |
|
|
filterExplicitVectorRec(bdd_regular(thenDdNode), currentLevel + 1, thenComplemented, maxLevel, ddVariableIndices, currentOffset + odd.getElseOffset(), odd.getThenSuccessor(), result, currentIndex, values); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
std::vector<InternalBdd<DdType::Sylvan>> InternalBdd<DdType::Sylvan>::splitIntoGroups(std::vector<uint_fast64_t> const& ddGroupVariableIndices) const { |
|
|
std::vector<InternalBdd<DdType::Sylvan>> InternalBdd<DdType::Sylvan>::splitIntoGroups(std::vector<uint_fast64_t> const& ddGroupVariableIndices) const { |
|
|
std::vector<InternalBdd<DdType::Sylvan>> result; |
|
|
std::vector<InternalBdd<DdType::Sylvan>> result; |
|
|
splitIntoGroupsRec(this->getSylvanBdd().GetBDD(), result, ddGroupVariableIndices, 0, ddGroupVariableIndices.size()); |
|
|
splitIntoGroupsRec(this->getSylvanBdd().GetBDD(), result, ddGroupVariableIndices, 0, ddGroupVariableIndices.size()); |
|
|
return result; |
|
|
return result; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void InternalBdd<DdType::Sylvan>::splitIntoGroupsRec(BDD dd, std::vector<InternalBdd<DdType::Sylvan>>& groups, std::vector<uint_fast64_t> const& ddGroupVariableIndices, uint_fast64_t currentLevel, uint_fast64_t maxLevel) const { |
|
|
void InternalBdd<DdType::Sylvan>::splitIntoGroupsRec(BDD dd, std::vector<InternalBdd<DdType::Sylvan>>& groups, std::vector<uint_fast64_t> const& ddGroupVariableIndices, uint_fast64_t currentLevel, uint_fast64_t maxLevel) const { |
|
|
// For the empty DD, we do not need to create a group.
|
|
|
// For the empty DD, we do not need to create a group.
|
|
|
if (dd == sylvan_false) { |
|
|
if (dd == sylvan_false) { |
|
|
return; |
|
|
return; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (currentLevel == maxLevel) { |
|
|
if (currentLevel == maxLevel) { |
|
|
groups.push_back(InternalBdd<DdType::Sylvan>(ddManager, sylvan::Bdd(dd))); |
|
|
groups.push_back(InternalBdd<DdType::Sylvan>(ddManager, sylvan::Bdd(dd))); |
|
|
} else if (bdd_isterminal(dd) || ddGroupVariableIndices[currentLevel] < sylvan_var(dd)) { |
|
|
} else if (bdd_isterminal(dd) || ddGroupVariableIndices[currentLevel] < sylvan_var(dd)) { |
|
@ -470,39 +470,39 @@ namespace storm { |
|
|
// Otherwise, we compute the ODDs for both the then- and else successors.
|
|
|
// Otherwise, we compute the ODDs for both the then- and else successors.
|
|
|
BDD thenDdNode = sylvan_high(dd); |
|
|
BDD thenDdNode = sylvan_high(dd); |
|
|
BDD elseDdNode = sylvan_low(dd); |
|
|
BDD elseDdNode = sylvan_low(dd); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
splitIntoGroupsRec(elseDdNode, groups, ddGroupVariableIndices, currentLevel + 1, maxLevel); |
|
|
splitIntoGroupsRec(elseDdNode, groups, ddGroupVariableIndices, currentLevel + 1, maxLevel); |
|
|
splitIntoGroupsRec(thenDdNode, groups, ddGroupVariableIndices, currentLevel + 1, maxLevel); |
|
|
splitIntoGroupsRec(thenDdNode, groups, ddGroupVariableIndices, currentLevel + 1, maxLevel); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
std::pair<std::vector<storm::expressions::Expression>, std::unordered_map<uint_fast64_t, storm::expressions::Variable>> InternalBdd<DdType::Sylvan>::toExpression(storm::expressions::ExpressionManager& manager) const { |
|
|
std::pair<std::vector<storm::expressions::Expression>, std::unordered_map<uint_fast64_t, storm::expressions::Variable>> InternalBdd<DdType::Sylvan>::toExpression(storm::expressions::ExpressionManager& manager) const { |
|
|
std::pair<std::vector<storm::expressions::Expression>, std::unordered_map<uint_fast64_t, storm::expressions::Variable>> result; |
|
|
std::pair<std::vector<storm::expressions::Expression>, std::unordered_map<uint_fast64_t, storm::expressions::Variable>> result; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Create (and maintain) a mapping from the DD nodes to a counter that says the how-many-th node (within the
|
|
|
// Create (and maintain) a mapping from the DD nodes to a counter that says the how-many-th node (within the
|
|
|
// nodes of equal index) the node was.
|
|
|
// nodes of equal index) the node was.
|
|
|
std::unordered_map<BDD, uint_fast64_t> nodeToCounterMap; |
|
|
std::unordered_map<BDD, uint_fast64_t> nodeToCounterMap; |
|
|
std::vector<uint_fast64_t> nextCounterForIndex(ddManager->getNumberOfDdVariables(), 0); |
|
|
std::vector<uint_fast64_t> nextCounterForIndex(ddManager->getNumberOfDdVariables(), 0); |
|
|
std::unordered_map<std::pair<uint_fast64_t, uint_fast64_t>, storm::expressions::Variable> countIndexToVariablePair; |
|
|
std::unordered_map<std::pair<uint_fast64_t, uint_fast64_t>, storm::expressions::Variable> countIndexToVariablePair; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool negated = bdd_isnegated(this->getSylvanBdd().GetBDD()); |
|
|
bool negated = bdd_isnegated(this->getSylvanBdd().GetBDD()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Translate from the top node downwards.
|
|
|
// Translate from the top node downwards.
|
|
|
storm::expressions::Variable topVariable = this->toExpressionRec(bdd_regular(this->getSylvanBdd().GetBDD()), manager, result.first, result.second, countIndexToVariablePair, nodeToCounterMap, nextCounterForIndex); |
|
|
storm::expressions::Variable topVariable = this->toExpressionRec(bdd_regular(this->getSylvanBdd().GetBDD()), manager, result.first, result.second, countIndexToVariablePair, nodeToCounterMap, nextCounterForIndex); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Create the final expression.
|
|
|
// Create the final expression.
|
|
|
if (negated) { |
|
|
if (negated) { |
|
|
result.first.push_back(!topVariable); |
|
|
result.first.push_back(!topVariable); |
|
|
} else { |
|
|
} else { |
|
|
result.first.push_back(topVariable); |
|
|
result.first.push_back(topVariable); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return result; |
|
|
return result; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
storm::expressions::Variable InternalBdd<DdType::Sylvan>::toExpressionRec(BDD dd, storm::expressions::ExpressionManager& manager, std::vector<storm::expressions::Expression>& expressions, std::unordered_map<uint_fast64_t, storm::expressions::Variable>& indexToVariableMap, std::unordered_map<std::pair<uint_fast64_t, uint_fast64_t>, storm::expressions::Variable>& countIndexToVariablePair, std::unordered_map<BDD, uint_fast64_t>& nodeToCounterMap, std::vector<uint_fast64_t>& nextCounterForIndex) { |
|
|
storm::expressions::Variable InternalBdd<DdType::Sylvan>::toExpressionRec(BDD dd, storm::expressions::ExpressionManager& manager, std::vector<storm::expressions::Expression>& expressions, std::unordered_map<uint_fast64_t, storm::expressions::Variable>& indexToVariableMap, std::unordered_map<std::pair<uint_fast64_t, uint_fast64_t>, storm::expressions::Variable>& countIndexToVariablePair, std::unordered_map<BDD, uint_fast64_t>& nodeToCounterMap, std::vector<uint_fast64_t>& nextCounterForIndex) { |
|
|
STORM_LOG_ASSERT(!bdd_isnegated(dd), "Expected non-negated BDD node."); |
|
|
STORM_LOG_ASSERT(!bdd_isnegated(dd), "Expected non-negated BDD node."); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// First, try to look up the current node if it's not a terminal node.
|
|
|
// First, try to look up the current node if it's not a terminal node.
|
|
|
auto nodeCounterIt = nodeToCounterMap.find(dd); |
|
|
auto nodeCounterIt = nodeToCounterMap.find(dd); |
|
|
if (nodeCounterIt != nodeToCounterMap.end()) { |
|
|
if (nodeCounterIt != nodeToCounterMap.end()) { |
|
@ -511,10 +511,10 @@ namespace storm { |
|
|
STORM_LOG_ASSERT(variableIt != countIndexToVariablePair.end(), "Unable to find node."); |
|
|
STORM_LOG_ASSERT(variableIt != countIndexToVariablePair.end(), "Unable to find node."); |
|
|
return variableIt->second; |
|
|
return variableIt->second; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// If the node was not yet encountered, we create a variable and associate it with the appropriate expression.
|
|
|
// If the node was not yet encountered, we create a variable and associate it with the appropriate expression.
|
|
|
storm::expressions::Variable newNodeVariable = manager.declareFreshBooleanVariable(); |
|
|
storm::expressions::Variable newNodeVariable = manager.declareFreshBooleanVariable(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Since we want to reuse the variable whenever possible, we insert the appropriate entries in the hash table.
|
|
|
// Since we want to reuse the variable whenever possible, we insert the appropriate entries in the hash table.
|
|
|
if (!bdd_isterminal(dd)) { |
|
|
if (!bdd_isterminal(dd)) { |
|
|
// If we are dealing with a non-terminal node, we count it as a new node with this index.
|
|
|
// If we are dealing with a non-terminal node, we count it as a new node with this index.
|
|
@ -526,7 +526,7 @@ namespace storm { |
|
|
nodeToCounterMap[dd] = 0; |
|
|
nodeToCounterMap[dd] = 0; |
|
|
countIndexToVariablePair[std::make_pair(0, sylvan_var(dd))] = newNodeVariable; |
|
|
countIndexToVariablePair[std::make_pair(0, sylvan_var(dd))] = newNodeVariable; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// In the terminal case, we can only have a one since we are considering non-negated nodes only.
|
|
|
// In the terminal case, we can only have a one since we are considering non-negated nodes only.
|
|
|
if (bdd_isterminal(dd)) { |
|
|
if (bdd_isterminal(dd)) { |
|
|
if (dd == sylvan_true) { |
|
|
if (dd == sylvan_true) { |
|
@ -542,7 +542,7 @@ namespace storm { |
|
|
BDD E = bdd_regular(e); |
|
|
BDD E = bdd_regular(e); |
|
|
storm::expressions::Variable thenVariable = toExpressionRec(T, manager, expressions, indexToVariableMap, countIndexToVariablePair, nodeToCounterMap, nextCounterForIndex); |
|
|
storm::expressions::Variable thenVariable = toExpressionRec(T, manager, expressions, indexToVariableMap, countIndexToVariablePair, nodeToCounterMap, nextCounterForIndex); |
|
|
storm::expressions::Variable elseVariable = toExpressionRec(E, manager, expressions, indexToVariableMap, countIndexToVariablePair, nodeToCounterMap, nextCounterForIndex); |
|
|
storm::expressions::Variable elseVariable = toExpressionRec(E, manager, expressions, indexToVariableMap, countIndexToVariablePair, nodeToCounterMap, nextCounterForIndex); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Create the appropriate expression.
|
|
|
// Create the appropriate expression.
|
|
|
// Create the appropriate expression.
|
|
|
// Create the appropriate expression.
|
|
|
auto indexVariable = indexToVariableMap.find(sylvan_var(dd)); |
|
|
auto indexVariable = indexToVariableMap.find(sylvan_var(dd)); |
|
@ -555,21 +555,21 @@ namespace storm { |
|
|
} |
|
|
} |
|
|
expressions.push_back(storm::expressions::iff(newNodeVariable, storm::expressions::ite(levelVariable, t == T ? thenVariable : !thenVariable, e == E ? elseVariable : !elseVariable))); |
|
|
expressions.push_back(storm::expressions::iff(newNodeVariable, storm::expressions::ite(levelVariable, t == T ? thenVariable : !thenVariable, e == E ? elseVariable : !elseVariable))); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Return the variable for this node.
|
|
|
// Return the variable for this node.
|
|
|
return newNodeVariable; |
|
|
return newNodeVariable; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template InternalAdd<DdType::Sylvan, double> InternalBdd<DdType::Sylvan>::toAdd() const; |
|
|
template InternalAdd<DdType::Sylvan, double> InternalBdd<DdType::Sylvan>::toAdd() const; |
|
|
template InternalAdd<DdType::Sylvan, uint_fast64_t> InternalBdd<DdType::Sylvan>::toAdd() const; |
|
|
template InternalAdd<DdType::Sylvan, uint_fast64_t> InternalBdd<DdType::Sylvan>::toAdd() const; |
|
|
template InternalAdd<DdType::Sylvan, storm::RationalNumber> InternalBdd<DdType::Sylvan>::toAdd() const; |
|
|
template InternalAdd<DdType::Sylvan, storm::RationalNumber> InternalBdd<DdType::Sylvan>::toAdd() const; |
|
|
template InternalAdd<DdType::Sylvan, storm::RationalFunction> InternalBdd<DdType::Sylvan>::toAdd() const; |
|
|
template InternalAdd<DdType::Sylvan, storm::RationalFunction> InternalBdd<DdType::Sylvan>::toAdd() const; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template void InternalBdd<DdType::Sylvan>::filterExplicitVector(Odd const& odd, std::vector<uint_fast64_t> const& ddVariableIndices, std::vector<double> const& sourceValues, std::vector<double>& targetValues) const; |
|
|
template void InternalBdd<DdType::Sylvan>::filterExplicitVector(Odd const& odd, std::vector<uint_fast64_t> const& ddVariableIndices, std::vector<double> const& sourceValues, std::vector<double>& targetValues) const; |
|
|
template void InternalBdd<DdType::Sylvan>::filterExplicitVector(Odd const& odd, std::vector<uint_fast64_t> const& ddVariableIndices, std::vector<uint_fast64_t> const& sourceValues, std::vector<uint_fast64_t>& targetValues) const; |
|
|
template void InternalBdd<DdType::Sylvan>::filterExplicitVector(Odd const& odd, std::vector<uint_fast64_t> const& ddVariableIndices, std::vector<uint_fast64_t> const& sourceValues, std::vector<uint_fast64_t>& targetValues) const; |
|
|
template void InternalBdd<DdType::Sylvan>::filterExplicitVector(Odd const& odd, std::vector<uint_fast64_t> const& ddVariableIndices, std::vector<storm::RationalNumber> const& sourceValues, std::vector<storm::RationalNumber>& targetValues) const; |
|
|
template void InternalBdd<DdType::Sylvan>::filterExplicitVector(Odd const& odd, std::vector<uint_fast64_t> const& ddVariableIndices, std::vector<storm::RationalNumber> const& sourceValues, std::vector<storm::RationalNumber>& targetValues) const; |
|
|
template void InternalBdd<DdType::Sylvan>::filterExplicitVector(Odd const& odd, std::vector<uint_fast64_t> const& ddVariableIndices, std::vector<storm::RationalFunction> const& sourceValues, std::vector<storm::RationalFunction>& targetValues) const; |
|
|
template void InternalBdd<DdType::Sylvan>::filterExplicitVector(Odd const& odd, std::vector<uint_fast64_t> const& ddVariableIndices, std::vector<storm::RationalFunction> const& sourceValues, std::vector<storm::RationalFunction>& targetValues) const; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template InternalAdd<DdType::Sylvan, double> InternalBdd<DdType::Sylvan>::ite(InternalAdd<DdType::Sylvan, double> const& thenAdd, InternalAdd<DdType::Sylvan, double> const& elseAdd) const; |
|
|
template InternalAdd<DdType::Sylvan, double> InternalBdd<DdType::Sylvan>::ite(InternalAdd<DdType::Sylvan, double> const& thenAdd, InternalAdd<DdType::Sylvan, double> const& elseAdd) const; |
|
|
template InternalAdd<DdType::Sylvan, uint_fast64_t> InternalBdd<DdType::Sylvan>::ite(InternalAdd<DdType::Sylvan, uint_fast64_t> const& thenAdd, InternalAdd<DdType::Sylvan, uint_fast64_t> const& elseAdd) const; |
|
|
template InternalAdd<DdType::Sylvan, uint_fast64_t> InternalBdd<DdType::Sylvan>::ite(InternalAdd<DdType::Sylvan, uint_fast64_t> const& thenAdd, InternalAdd<DdType::Sylvan, uint_fast64_t> const& elseAdd) const; |
|
|
template InternalAdd<DdType::Sylvan, storm::RationalNumber> InternalBdd<DdType::Sylvan>::ite(InternalAdd<DdType::Sylvan, storm::RationalNumber> const& thenAdd, InternalAdd<DdType::Sylvan, storm::RationalNumber> const& elseAdd) const; |
|
|
template InternalAdd<DdType::Sylvan, storm::RationalNumber> InternalBdd<DdType::Sylvan>::ite(InternalAdd<DdType::Sylvan, storm::RationalNumber> const& thenAdd, InternalAdd<DdType::Sylvan, storm::RationalNumber> const& elseAdd) const; |
|
|