Skip to content

Commit

Permalink
Removing the optimization support in the native language
Browse files Browse the repository at this point in the history
The current implementation of `maximize` and `minimize` isn't satisfying in
the native language. As this feature have never been released and MERCE prefers
using the SMT-LIB format, we remove the support of optimization in the native
language.
  • Loading branch information
Halbaroth committed Nov 2, 2023
1 parent 8ff7f24 commit d29f6bd
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions src/parsers/native_lexer.mll
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,6 @@
"match" , MATCH;
"with" , WITH;
"of" , OF;
"maximize" , MAXIMIZE;
"minimize" , MINIMIZE;
]
in
List.iter (fun (s, kw) -> Hashtbl.add tbl s kw) kw_list;
Expand Down
1 change: 0 additions & 1 deletion src/parsers/native_parser.mly
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@
%token RIGHTPAR RIGHTSQ RIGHTBR
%token SLASH POW POWDOT
%token THEN TIMES TRUE TYPE
%token MAXIMIZE MINIMIZE

/* Precedences */

Expand Down

0 comments on commit d29f6bd

Please sign in to comment.