Skip to content

Commit

Permalink
remove parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed Mar 2, 2023
1 parent fd97be0 commit aa75ba8
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/ast/simplifiers/solve_eqs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -266,9 +266,8 @@ namespace euf {
ptr_buffer<app, 128> stack;

auto visit = [&](expr* arg) {
if (is_uninterp_const(arg)) {
m_num_occs.insert_if_not_there(arg, 0)++;
}
if (is_uninterp_const(arg))
m_num_occs.insert_if_not_there(arg, 0)++;
if (!visited.is_marked(arg) && is_app(arg)) {
visited.mark(arg, true);
stack.push_back(to_app(arg));
Expand Down

0 comments on commit aa75ba8

Please sign in to comment.