Browse Source

Better debug output

tempestpy_adaptions
Matthias Volk 6 years ago
parent
commit
a15a0072de
  1. 1
      src/storm-dft/generator/DftNextStateGenerator.cpp

1
src/storm-dft/generator/DftNextStateGenerator.cpp

@ -115,6 +115,7 @@ namespace storm {
if(newState->isInvalid() || (nextBE->isTransient() && !newState->hasFailed(mDft.getTopLevelIndex()))) { if(newState->isInvalid() || (nextBE->isTransient() && !newState->hasFailed(mDft.getTopLevelIndex()))) {
// Continue with next possible state // Continue with next possible state
++currentFailable; ++currentFailable;
STORM_LOG_TRACE("State is ignored because " << (newState->isInvalid() ? "it is invalid" : "the transient fault is ignored"));
continue; continue;
} }

Loading…
Cancel
Save