Skip to content

Commit

Permalink
misc
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <[email protected]>
  • Loading branch information
NikolajBjorner committed Jul 31, 2020
1 parent 3f862cb commit 02084dc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/ast/rewriter/bool_rewriter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ br_status bool_rewriter::mk_nflat_or_core(unsigned num_args, expr * const * args

unsigned sz = buffer.size();

switch(sz) {
switch (sz) {
case 0:
result = m().mk_false();
return BR_DONE;
Expand Down Expand Up @@ -298,7 +298,7 @@ br_status bool_rewriter::mk_flat_or_core(unsigned num_args, expr * const * args,
}

expr * bool_rewriter::mk_or_app(unsigned num_args, expr * const * args) {
switch(num_args) {
switch (num_args) {
case 0: return m().mk_false();
case 1: return args[0];
default: return m().mk_or(num_args, args);
Expand Down
2 changes: 1 addition & 1 deletion src/math/lp/lp_bound_propagator.h
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ class lp_bound_propagator {
void try_add_equation_with_val_table(const vertex *v) {
SASSERT(m_fixed_vertex);
unsigned v_j = v->column();
vertex *u;
vertex *u = nullptr;
if (!m_vals_to_verts.find(val(v_j), u)) {
m_vals_to_verts.insert(val(v_j), u);
return;
Expand Down

0 comments on commit 02084dc

Please sign in to comment.