File tree Expand file tree Collapse file tree
src/main/java/edu/uiowa/cs/clc/kind2/api Expand file tree Collapse file tree Original file line number Diff line number Diff 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>
You can’t perform that action at this time.
0 commit comments