Skip to content

Commit

Permalink
add brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
baszalmstra committed Jan 2, 2025
1 parent ac092e0 commit a5e4e3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/solver/binary_encoding.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ impl<V: Hash + Eq + Clone> AtMostOnceTracker<V> {
alloc_clause(
variable.clone(),
helper_var.clone(),
var_idx >> bit_idx & 1 == 1,
((var_idx >> bit_idx) & 1) == 1,
);
}
}
Expand Down

0 comments on commit a5e4e3e

Please sign in to comment.