Fix bug in complexity computation

This commit is contained in:
Gabriel Tofvesson 2020-02-28 02:15:57 +01:00
parent 483d6ca1da
commit 2a06a71e94

View File

@ -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;
} }