mirror of
https://github.com/Z3Prover/z3
synced 2026-02-08 10:07:59 +00:00
remove a parameter
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
ee1dfd49c5
commit
35fac9c578
1 changed files with 2 additions and 2 deletions
|
|
@ -1135,7 +1135,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()) {
|
||||
|
|
@ -1160,7 +1160,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