3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-27 19:05:51 +00:00

add LP parser option to front-end and opt context

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2018-02-06 14:02:44 -08:00
parent 20fe08d80c
commit 43441d0fd5
8 changed files with 459 additions and 176 deletions

View file

@ -13,7 +13,9 @@ Author:
#ifndef OPT_FRONTEND_H_
#define OPT_FRONTEND_H_
unsigned parse_opt(char const* file_name, bool is_wcnf);
enum opt_format { opb_t, wcnf_t, lp_t };
unsigned parse_opt(char const* file_name, opt_format f);
#endif /* OPT_FRONTEND_H_ */