mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
fix build issues
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
fa93bc419d
commit
ef6339f14c
2 changed files with 4 additions and 4 deletions
|
@ -2203,9 +2203,8 @@ static void check_error(z3::context& ctx) {
|
|||
static void display_tptp(std::ostream& out) {
|
||||
// run SMT2 parser, pretty print TFA format.
|
||||
z3::context ctx;
|
||||
Z3_ast _fml = Z3_parse_smtlib2_file(ctx, g_input_file, 0, 0, 0, 0, 0, 0);
|
||||
check_error(ctx);
|
||||
z3::expr fml(ctx, _fml);
|
||||
z3::expr_vector fmls = ctx.parse_file(g_input_file);
|
||||
z3::expr fml = z3::mk_and(fmls);
|
||||
|
||||
pp_tptp pp(ctx);
|
||||
pp.collect_decls(fml);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue