Browse Source

Added hint towards uniquefailedbe flag in error message

tempestpy_adaptions
Alexander Bork 5 years ago
parent
commit
3473a930a2
  1. 2
      src/storm-dft/generator/DftNextStateGenerator.cpp

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

@ -30,7 +30,7 @@ namespace storm {
if (constBe->failed()) {
constFailedBeCounter++;
STORM_LOG_THROW(constFailedBeCounter < 2, storm::exceptions::NotSupportedException,
"DFTs with more than one constantly failed BE are not supported");
"DFTs with more than one constantly failed BE are not supported. Try using the option '--uniquefailedbe'.");
constFailedBE = constBe;
}
}

Loading…
Cancel
Save