3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 03:45:51 +00:00

propagate_ineqs synchronization fix

This commit is contained in:
Christoph M. Wintersteiger 2015-02-08 13:25:40 +00:00
parent a78dd680fb
commit 73cebc24c8
3 changed files with 4 additions and 4 deletions

View file

@ -65,7 +65,7 @@ tactic * mk_propagate_ineqs_tactic(ast_manager & m, params_ref const & p) {
struct propagate_ineqs_tactic::imp {
ast_manager & m;
unsynch_mpq_manager nm;
synch_mpq_manager nm;
small_object_allocator m_allocator;
bound_propagator bp;
arith_util m_util;
@ -73,7 +73,7 @@ struct propagate_ineqs_tactic::imp {
obj_map<expr, a_var> m_expr2var;
expr_ref_vector m_var2expr;
typedef numeral_buffer<mpq, unsynch_mpq_manager> mpq_buffer;
typedef numeral_buffer<mpq, synch_mpq_manager> mpq_buffer;
typedef svector<a_var> var_buffer;
mpq_buffer m_num_buffer;