Skip to content
Snippets Groups Projects
Commit 55808740 authored by Michael Leuschel's avatar Michael Leuschel
Browse files

remove upper bound on new nodes added by LTL model check

uses -1 rather than 500
parent cdc2a2db
Branches
Tags
No related merge requests found
......@@ -70,7 +70,7 @@ public final class LtlCheckingJob extends Job {
}
private Result doSomeModelchecking() throws ProBException {
return LtlCheckingCommand.modelCheck(animator, formula, 500, option);
return LtlCheckingCommand.modelCheck(animator, formula, -1, option); // this used to be 500 instead of -1, but currently the Java side does not seem to cope with the LTL model checker returning; -1 means no maximum value
}
private boolean setSymmetry() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment