From ab669f3862c9cf1c02516bce103bba1e1cf39de9 Mon Sep 17 00:00:00 2001 From: kocotom Date: Sat, 30 Mar 2024 21:27:47 +0100 Subject: [PATCH] Parentheses added to clarify expression with a bitwise operation --- src/partition.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/partition.cc b/src/partition.cc index 9c95ba31e..480199644 100644 --- a/src/partition.cc +++ b/src/partition.cc @@ -423,7 +423,7 @@ std::vector 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; }