3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-11-09 15:47:29 +00:00

comment out parameter check

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2025-11-04 16:11:58 -08:00
parent 2503b35dc6
commit 11fb5c7dc4

View file

@ -136,10 +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;