Skip to content

Commit 7ea2cf6

Browse files
Merge pull request #13 from Jabe03/remove-old-frontend
Removed references to old_frontend option
2 parents 16be07f + 5bbfba6 commit 7ea2cf6

1 file changed

Lines changed: 0 additions & 16 deletions

File tree

src/main/java/edu/uiowa/cs/clc/kind2/api/Kind2Api.java

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@ public class Kind2Api {
9898
private Boolean logInvs;
9999
private Boolean dumpCex;
100100
private Float timeout;
101-
private Boolean oldFrontend;
102101
private Boolean onlyParse;
103102
private Boolean lsp;
104103
private Set<Module> enabledSet;
@@ -627,10 +626,6 @@ public List<String> getOptions() {
627626
options.add("--timeout");
628627
options.add(timeout.toString());
629628
}
630-
if (oldFrontend != null) {
631-
options.add("--old_frontend");
632-
options.add(oldFrontend.toString());
633-
}
634629
if (onlyParse != null) {
635630
options.add("--only_parse");
636631
options.add(onlyParse.toString());
@@ -1291,17 +1286,6 @@ public void setTimeout(float timeout) {
12911286
this.timeout = timeout;
12921287
}
12931288

1294-
/**
1295-
* Use the old Lustre front-end.
1296-
* <p>
1297-
* Default: true
1298-
*
1299-
* @param oldFrontend whether or not to use the old Lustre front-end.
1300-
*/
1301-
public void setOldFrontend(boolean oldFrontend) {
1302-
this.oldFrontend = oldFrontend;
1303-
}
1304-
13051289
/**
13061290
* Only parse the Lustre program. No analysis is performed
13071291
* <p>

0 commit comments

Comments
 (0)