Skip to content

Commit 555b0e4

Browse files
committed
partially revert e368a91
TTTLmabda does not seem to require exhaustive analysis for consistency reasons
1 parent d527929 commit 555b0e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

algorithms/active/lambda/src/main/java/de/learnlib/algorithm/lambda/ttt/AbstractTTTLambda.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public boolean refineHypothesis(DefaultQuery<I, D> counterexample) {
7070
witnesses.add(counterexample);
7171
boolean refined = false;
7272

73-
while (!witnesses.isEmpty()) {
73+
while (MQUtil.isCounterexample(counterexample, getHypothesisModel())) {
7474
final DefaultQuery<I, D> witness = witnesses.getFirst();
7575

7676
if (witness.getOutput() == null) {

0 commit comments

Comments
 (0)