mirror of
https://github.com/Z3Prover/z3
synced 2025-05-12 02:04:43 +00:00
fix #4143
This commit is contained in:
parent
fa1197a78f
commit
ccce599bad
5 changed files with 46 additions and 30 deletions
|
@ -171,6 +171,7 @@ namespace smt {
|
|||
arith_eq_adapter m_arith_eq_adapter;
|
||||
theory_diff_logic_statistics m_stats;
|
||||
Graph m_graph;
|
||||
bool m_consistent;
|
||||
theory_var m_izero, m_rzero; // cache the variable representing the zero variable.
|
||||
int_vector m_scc_id; // Cheap equality propagation
|
||||
eq_prop_info_set m_eq_prop_info_set; // set of existing equality prop infos
|
||||
|
@ -230,6 +231,7 @@ namespace smt {
|
|||
m_params(params),
|
||||
m_util(m),
|
||||
m_arith_eq_adapter(*this, params, m_util),
|
||||
m_consistent(true),
|
||||
m_izero(null_theory_var),
|
||||
m_rzero(null_theory_var),
|
||||
m_terms(m),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue