mirror of
https://github.com/Z3Prover/z3
synced 2025-08-10 21:20:52 +00:00
continue instead of return
This commit is contained in:
parent
c088eb4a26
commit
592791ba34
1 changed files with 1 additions and 1 deletions
|
@ -330,7 +330,7 @@ namespace polysat {
|
||||||
LOG("lcs: " << fac_eval);
|
LOG("lcs: " << fac_eval);
|
||||||
pdd fac_eval_inv = m.zero();
|
pdd fac_eval_inv = m.zero();
|
||||||
if (!inv(fac_eval, fac_eval_inv))
|
if (!inv(fac_eval, fac_eval_inv))
|
||||||
return;
|
continue;
|
||||||
|
|
||||||
pdd const rest_eval = sub.apply_to(rest);
|
pdd const rest_eval = sub.apply_to(rest);
|
||||||
pdd const vs = -rest_eval * fac_eval_inv; // this is the polynomial that computes v
|
pdd const vs = -rest_eval * fac_eval_inv; // this is the polynomial that computes v
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue