Skip to content

Commit 65fcbaf

Browse files
committed
Corrected profiling of counterexample search (fixes #27)
1 parent 96f0eb0 commit 65fcbaf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

core/src/main/java/de/learnlib/experiments/Experiment.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,11 +88,11 @@ public A run() {
8888
logger.logPhase("Searching for counterexample");
8989
profileStart("Searching for counterexample");
9090
DefaultQuery<I, D> ce = equivalenceAlgorithm.findCounterExample(hyp, inputs);
91+
profileStop("Searching for counterexample");
9192
if (ce == null) {
9293
done = true;
9394
continue;
9495
}
95-
profileStop("Searching for counterexample");
9696

9797
logger.logCounterexample(ce.getInput().toString());
9898

0 commit comments

Comments
 (0)