mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
fix bugs
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
6ca0c7c6c7
commit
87141f4cb3
2 changed files with 9 additions and 7 deletions
|
@ -1005,7 +1005,7 @@ namespace smt {
|
|||
strm << val << " <= " << v;
|
||||
expr* b = m.mk_fresh_const(strm.str().c_str(), m.mk_bool_sort());
|
||||
bool_var bv = ctx.mk_bool_var(b);
|
||||
atom* a = alloc(atom, bv, v, val, A_LOWER);
|
||||
atom* a = alloc(atom, bv, v, val+Ext::m_real_epsilon, A_LOWER);
|
||||
m_unassigned_atoms[v]++;
|
||||
m_var_occs[v].push_back(a);
|
||||
m_atoms.push_back(a);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue