3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-11 09:44:43 +00:00

adding user-propagator ability

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-08-17 22:39:55 -07:00
parent c13e3ce693
commit 152c95f72a
15 changed files with 305 additions and 21 deletions

View file

@ -533,6 +533,8 @@ namespace smt {
literal mk_preferred_eq(expr* a, expr* b);
literal mk_literal(expr* e);
enode* ensure_enode(expr* e);
enode* get_root(expr* e) { return ensure_enode(e)->get_root(); }