mirror of
https://github.com/Z3Prover/z3
synced 2026-04-26 13:53:33 +00:00
comment out parameter check
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
385dcb6de0
commit
eecfb47330
1 changed files with 2 additions and 1 deletions
|
|
@ -136,10 +136,11 @@ bool bound_simplifier::reduce_arg(expr* arg, expr_ref& result) {
|
||||||
|
|
||||||
void bound_simplifier::reduce() {
|
void bound_simplifier::reduce() {
|
||||||
|
|
||||||
|
#if 0
|
||||||
smt_params_helper sp(p);
|
smt_params_helper sp(p);
|
||||||
if (!sp.bound_simplifier())
|
if (!sp.bound_simplifier())
|
||||||
return;
|
return;
|
||||||
|
#endif
|
||||||
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) {
|
||||||
updated = false;
|
updated = false;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue