Browse Source

Only label states as deadlocks when the behaviour was expanded (jit-builder)

tempestpy_adaptions
dehnert 8 years ago
parent
commit
ffedc2268b
  1. 2
      src/storm/builder/jit/ExplicitJitJaniModelBuilder.cpp

2
src/storm/builder/jit/ExplicitJitJaniModelBuilder.cpp

@ -2350,7 +2350,7 @@ namespace storm {
}
void addStateBehaviour(IndexType const& stateId, StateBehaviour<IndexType, ValueType>& behaviour) {
if (behaviour.empty()) {
if (behaviour.empty() && behaviour.expanded()) {
deadlockStates.push_back(stateId);
}

Loading…
Cancel
Save