Skip to content

Commit

Permalink
formatting updates
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed Apr 13, 2023
1 parent f61168c commit 444238b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/ast/rewriter/maximize_ac_sharing.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ br_status maximize_ac_sharing::reduce_app(func_decl * f, unsigned num_args, expr
else {
result = m.mk_app(f, numeral, _args[0]);
}
TRACE("ac_sharing_detail", tout << "result: " << mk_pp(result, m) << "\n";);
TRACE("ac_sharing_detail", tout << "result: " << result << "\n";);
return BR_DONE;
}
}
Expand Down
5 changes: 2 additions & 3 deletions src/model/value_factory.h
Original file line number Diff line number Diff line change
Expand Up @@ -194,9 +194,8 @@ class simple_factory : public value_factory {
while (!is_new) {
result = mk_value(next, s, is_new);
next++;
if (has_max && next > max_size + start) {
return nullptr;
}
if (has_max && next > max_size + start)
return nullptr;
}
SASSERT(result != 0);
return result;
Expand Down

0 comments on commit 444238b

Please sign in to comment.