3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-24 21:26:59 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-12-02 15:21:59 -08:00
parent 1eab774b91
commit 37a4dd68d0
8 changed files with 48 additions and 31 deletions

View file

@ -299,9 +299,11 @@ namespace smt {
void new_eq_or_diseq(bool is_eq, th_var v1, th_var v2, justification& eq_just);
th_var get_zero(sort* s) const { return m_zero; }
th_var get_zero(sort* s) { init_zero(); return m_zero; }
th_var get_zero(expr* e) const { return get_zero(get_manager().get_sort(e)); }
th_var get_zero(expr* e) { return get_zero(get_manager().get_sort(e)); }
void init_zero();
void inc_conflicts();