Skip to content

Commit

Permalink
Include final step in inductive counterexamples
Browse files Browse the repository at this point in the history
  • Loading branch information
agacek committed Feb 17, 2013
1 parent f9ab4f0 commit 429bde9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jkind/processes/InductiveProcess.java
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ private void checkProperties(int k) {
String p = iterator.next();
BoolValue v = (BoolValue) model.getFunctionValue("$" + p, index);
if (!v.getBool()) {
sendInductiveCounterexample(p, n, k, model);
sendInductiveCounterexample(p, n, k+1, model);
iterator.remove();
}
}
Expand Down

0 comments on commit 429bde9

Please sign in to comment.