Skip to content

Commit

Permalink
Parentheses added to clarify expression with a bitwise operation
Browse files Browse the repository at this point in the history
  • Loading branch information
kocotom committed Mar 30, 2024
1 parent d379897 commit ab669f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/partition.cc
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ std::vector<SplitPair> Partition::split_blocks(
do {
// we choose the swapping strategy using XOR operation
while((repr_marked
^ !used_states[get_block_item(iter_first).state])) {
^ (!used_states[get_block_item(iter_first).state]))) {
// this visited state will be part of the former block
++iter_first;
}
Expand Down

0 comments on commit ab669f3

Please sign in to comment.