3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-22 05:43:39 +00:00

add also get-consequences

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-10-08 12:28:45 -07:00
parent be33bb7b48
commit 228b952a50
4 changed files with 28 additions and 0 deletions

View file

@ -29,7 +29,9 @@ struct solver2smt2_pp {
void assert_expr(expr* e, expr* t);
void push();
void pop(unsigned n);
void reset();
void check(unsigned n, expr* const* asms);
void get_consequences(expr_ref_vector const& assumptions, expr_ref_vector const& variables);
};
struct Z3_solver_ref : public api::object {