Implement persistent board complexity tracking
This commit is contained in:
parent
899e228b6d
commit
483d6ca1da
28
board.c
28
board.c
@ -300,6 +300,9 @@ board_place (
|
|||||||
|
|
||||||
/* Set value */
|
/* Set value */
|
||||||
board_set (board, x, y, value);
|
board_set (board, x, y, value);
|
||||||
|
|
||||||
|
/* Update board complexity */
|
||||||
|
board_refresh_complexity (board);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -307,3 +310,28 @@ board_place (
|
|||||||
}
|
}
|
||||||
else ERROR("Invalid parameters to function board_place()");
|
else ERROR("Invalid parameters to function board_place()");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void
|
||||||
|
board_refresh_complexity (struct board *board)
|
||||||
|
{
|
||||||
|
board->complexity = 10;
|
||||||
|
for (board_pos y = 0; y < 9; ++y)
|
||||||
|
for (board_pos x = 0; x < 9; ++x)
|
||||||
|
if (! board_has_value (board, x, y))
|
||||||
|
{
|
||||||
|
struct board_element *elem = BOARD_ELEM (board, x, y);
|
||||||
|
if (elem->complexity < board->complexity)
|
||||||
|
{
|
||||||
|
board->complexity = elem->complexity;
|
||||||
|
|
||||||
|
/* Short-circuit function on comlpexity=1, since it can't go lower */
|
||||||
|
if (board->complexity == 1)
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* If there are no complex board elements, board is solved */
|
||||||
|
if (board->complexity == 10)
|
||||||
|
board->complexity = 0;
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user