mirror of
https://github.com/Z3Prover/z3
synced 2025-05-12 02:04:43 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
1eab774b91
commit
37a4dd68d0
8 changed files with 48 additions and 31 deletions
|
@ -375,7 +375,9 @@ namespace smt {
|
|||
|
||||
void get_implied_bound_antecedents(edge_id bridge_edge, edge_id subsumed_edge, conflict_resolution & cr);
|
||||
|
||||
theory_var get_zero(bool is_int) const { return is_int ? m_izero : m_rzero; }
|
||||
void init_zero();
|
||||
|
||||
theory_var get_zero(bool is_int) { init_zero(); return is_int ? m_izero : m_rzero; }
|
||||
|
||||
void inc_conflicts();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue