mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 03:15:50 +00:00
add destination to custom command
This commit is contained in:
parent
a164087384
commit
a72856111b
3 changed files with 6 additions and 9 deletions
|
@ -66,7 +66,8 @@ void order::order_lemma_on_binomial(const monic& ac) {
|
|||
order_lemma_on_binomial_sign(ac, ac.vars()[k], ac.vars()[!k], gt? 1: -1);
|
||||
order_lemma_on_factor_binomial_explore(ac, k);
|
||||
k = !k;
|
||||
} while (k);
|
||||
}
|
||||
while (k);
|
||||
}
|
||||
|
||||
|
||||
|
@ -101,9 +102,8 @@ void order::order_lemma_on_factor_binomial_explore(const monic& ac, bool k) {
|
|||
continue;
|
||||
TRACE("nla_solver", tout << "bd = " << pp_mon_with_vars(_(), bd););
|
||||
order_lemma_on_factor_binomial_rm(ac, k, bd);
|
||||
if (done()) {
|
||||
if (done())
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue