3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-11-22 13:41:27 +00:00

Merge branch 'param-tuning' of https://github.com/ilanashapiro/z3 into param-tuning

This commit is contained in:
Ilana Shapiro 2025-11-13 13:14:52 -08:00
commit fb46bca5db

View file

@ -136,6 +136,11 @@ bool bound_simplifier::reduce_arg(expr* arg, expr_ref& result) {
void bound_simplifier::reduce() {
#if 0
smt_params_helper sp(p);
if (!sp.bound_simplifier())
return;
#endif
bool updated = true, found_bound = false;
for (unsigned i = 0; i < 5 && updated; ++i) {
updated = false;