mirror of
https://github.com/Z3Prover/z3
synced 2026-06-02 23:27:53 +00:00
check propagate ineqs setting before applying simplifier
This commit is contained in:
parent
0f12eb1ab3
commit
385dcb6de0
1 changed files with 4 additions and 0 deletions
|
|
@ -135,6 +135,10 @@ bool bound_simplifier::reduce_arg(expr* arg, expr_ref& result) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void bound_simplifier::reduce() {
|
void bound_simplifier::reduce() {
|
||||||
|
|
||||||
|
smt_params_helper sp(p);
|
||||||
|
if (!sp.bound_simplifier())
|
||||||
|
return;
|
||||||
|
|
||||||
bool updated = true, found_bound = false;
|
bool updated = true, found_bound = false;
|
||||||
for (unsigned i = 0; i < 5 && updated; ++i) {
|
for (unsigned i = 0; i < 5 && updated; ++i) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue