Browse Source

No distinction between successful dependency and no dependency at all

Former-commit-id: b511493283
main
Mavo 9 years ago
parent
commit
7788d45ab5
  1. 4
      src/storage/dft/DFTState.cpp

4
src/storage/dft/DFTState.cpp

@ -91,7 +91,9 @@ namespace storm {
template<typename ValueType>
void DFTState<ValueType>::setDependencySuccessful(size_t id) {
mStatus.set(mDft.failureIndex(id));
// No distinction between successful dependency and no dependency at all
// -> we do not set bit
//mStatus.set(mDft.failureIndex(id));
}
template<typename ValueType>

Loading…
Cancel
Save