mirror of
https://github.com/Z3Prover/z3
synced 2025-08-18 01:02:15 +00:00
fix #4103
This commit is contained in:
parent
09d881cce5
commit
37f6364547
2 changed files with 5 additions and 4 deletions
|
@ -969,7 +969,7 @@ namespace smt {
|
|||
if (eps_r.is_pos()) {
|
||||
rational num_r = -b.get_rational();
|
||||
SASSERT(num_r.is_pos());
|
||||
rational new_delta = num_r/eps_r;
|
||||
rational new_delta = num_r/2*eps_r;
|
||||
if (new_delta < m_delta) {
|
||||
m_delta = new_delta;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue