3
0
Fork 0
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:
Nikolaj Bjorner 2025-11-04 15:56:44 -08:00
parent fc7660d0b5
commit 2503b35dc6

View file

@ -136,6 +136,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) {
updated = false;