Browse Source

Fixed bug where POR was changed to PAND during transformation to binary FDEPs

tempestpy_adaptions
Matthias Volk 4 years ago
parent
commit
fb2f55d804
No known key found for this signature in database GPG Key ID: 83A57678F739FCD3
  1. 2
      src/storm-dft/transformations/DftTransformator.cpp

2
src/storm-dft/transformations/DftTransformator.cpp

@ -150,7 +150,7 @@ namespace storm {
}
case storm::storage::DFTElementType::POR: {
auto por = std::static_pointer_cast<storm::storage::DFTPor<ValueType> const>(element);
builder.addPandElement(por->name(), getChildrenVector(por), por->isInclusive());
builder.addPorElement(por->name(), getChildrenVector(por), por->isInclusive());
break;
}
case storm::storage::DFTElementType::SPARE:

Loading…
Cancel
Save