Browse Source

fix non-terminating while loop in high level counterexamples

tempestpy_adaptions
sjunges 7 years ago
parent
commit
91d0cdf41d
  1. 3
      src/storm/counterexamples/SMTMinimalLabelSetGenerator.h

3
src/storm/counterexamples/SMTMinimalLabelSetGenerator.h

@ -1709,6 +1709,9 @@ namespace storm {
// Set up some variables for the iterations. // Set up some variables for the iterations.
boost::container::flat_set<uint_fast64_t> commandSet(relevancyInformation.relevantLabels); boost::container::flat_set<uint_fast64_t> commandSet(relevancyInformation.relevantLabels);
if (relevancyInformation.relevantLabels.empty()) {
return commandSet;
}
bool done = false; bool done = false;
uint_fast64_t iterations = 0; uint_fast64_t iterations = 0;
uint_fast64_t currentBound = 0; uint_fast64_t currentBound = 0;

Loading…
Cancel
Save