mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 16:45:31 +00:00
fix reference count bugs in overflow/underflow APIs for bit-vectors
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
d569027e36
commit
56bfc06c4f
2 changed files with 1 additions and 2 deletions
|
@ -2084,7 +2084,7 @@ namespace qe {
|
|||
|
||||
flet<bool> fl1(m_fparams.m_model, true);
|
||||
flet<bool> fl2(m_fparams.m_simplify_bit2int, true);
|
||||
//flet<bool> fl3(m_fparams.m_arith_enum_const_mod, true);
|
||||
flet<bool> fl3(m_fparams.m_arith_enum_const_mod, true);
|
||||
flet<bool> fl4(m_fparams.m_bv_enable_int2bv2int, true);
|
||||
flet<bool> fl5(m_fparams.m_array_canonize_simplify, true);
|
||||
flet<unsigned> fl6(m_fparams.m_relevancy_lvl, 0);
|
||||
|
|
|
@ -33,7 +33,6 @@ void theory_arith_params::updt_params(params_ref const & _p) {
|
|||
m_arith_int_eq_branching = p.arith_int_eq_branch();
|
||||
m_arith_ignore_int = p.arith_ignore_int();
|
||||
m_arith_bound_prop = static_cast<bound_prop_mode>(p.arith_propagation_mode());
|
||||
m_arith_enum_const_mod = true;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue