diff --git a/src/storm/counterexamples/SMTMinimalLabelSetGenerator.h b/src/storm/counterexamples/SMTMinimalLabelSetGenerator.h index e8f2464a9..63f8b6ff8 100644 --- a/src/storm/counterexamples/SMTMinimalLabelSetGenerator.h +++ b/src/storm/counterexamples/SMTMinimalLabelSetGenerator.h @@ -1709,6 +1709,9 @@ namespace storm { // Set up some variables for the iterations. boost::container::flat_set commandSet(relevancyInformation.relevantLabels); + if (relevancyInformation.relevantLabels.empty()) { + return commandSet; + } bool done = false; uint_fast64_t iterations = 0; uint_fast64_t currentBound = 0;