mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 11:25:51 +00:00
parent
7e8753cd3f
commit
0fc8ebc8cc
2 changed files with 4 additions and 4 deletions
|
@ -2404,8 +2404,8 @@ namespace algebraic_numbers {
|
|||
// all remaining variables are assigned.
|
||||
// the unassigned variable vanished when we replaced the rational values.
|
||||
DEBUG_CODE({
|
||||
for (unsigned i = 0; i < xs.size(); i++) {
|
||||
SASSERT(x2v.contains(xs[i]));
|
||||
for (auto x : xs) {
|
||||
SASSERT(x2v.contains(x));
|
||||
}
|
||||
});
|
||||
return;
|
||||
|
@ -2415,7 +2415,7 @@ namespace algebraic_numbers {
|
|||
polynomial_ref q(ext_pm);
|
||||
q = p_prime;
|
||||
polynomial_ref p_y(ext_pm);
|
||||
for (unsigned i = 0; i < xs.size() - 1; i++) {
|
||||
for (unsigned i = 0; i + 1 < xs.size(); i++) {
|
||||
checkpoint();
|
||||
polynomial::var y = xs[i];
|
||||
SASSERT(x2v.contains(y));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue