mirror of
https://github.com/Z3Prover/z3
synced 2025-11-09 23:52:02 +00:00
comment out parameter check
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
2503b35dc6
commit
11fb5c7dc4
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