mirror of
https://github.com/Z3Prover/z3
synced 2025-11-09 23:52:02 +00:00
check propagate ineqs setting before applying simplifier
This commit is contained in:
parent
fc7660d0b5
commit
2503b35dc6
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() {
|
||||
|
||||
smt_params_helper sp(p);
|
||||
if (!sp.bound_simplifier())
|
||||
return;
|
||||
|
||||
bool updated = true, found_bound = false;
|
||||
for (unsigned i = 0; i < 5 && updated; ++i) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue