Fix bug in complexity computation
This commit is contained in:
parent
483d6ca1da
commit
2a06a71e94
4
board.c
4
board.c
@ -250,10 +250,10 @@ board_update_marks (
|
|||||||
elem->potential ^= 0x1FF;
|
elem->potential ^= 0x1FF;
|
||||||
|
|
||||||
/* Count marked bits */
|
/* Count marked bits */
|
||||||
unsigned char potential = elem->potential;
|
unsigned short potential = elem->potential;
|
||||||
while (potential != 0)
|
while (potential != 0)
|
||||||
{
|
{
|
||||||
if (potential & 1 == 1)
|
if ((potential & 1) == 1)
|
||||||
++(elem->complexity);
|
++(elem->complexity);
|
||||||
potential >>= 1;
|
potential >>= 1;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user