mirror of
https://github.com/Z3Prover/z3
synced 2025-12-31 08:19:54 +00:00
remove a parameter
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
ae171dfee2
commit
20938f569f
1 changed files with 2 additions and 2 deletions
|
|
@ -1121,7 +1121,7 @@ namespace nlsat {
|
|||
|
||||
polynomial_ref_vector samples(m_pm);
|
||||
if (x < max_x)
|
||||
cac_add_cell_lits(ps, x, samples);
|
||||
cac_add_cell_lits(ps, x);
|
||||
|
||||
while (true) {
|
||||
if (all_univ(ps, x) && m_todo.empty()) {
|
||||
|
|
@ -1146,7 +1146,7 @@ namespace nlsat {
|
|||
if (m_todo.empty())
|
||||
break;
|
||||
x = m_todo.extract_max_polys(ps);
|
||||
cac_add_cell_lits(ps, x, samples);
|
||||
cac_add_cell_lits(ps, x);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue