Implement speculative value-placement branching
This commit is contained in:
parent
ca8809a5e1
commit
749ad4a260
53
board.c
53
board.c
@ -117,7 +117,7 @@ board_unmark (
|
|||||||
|
|
||||||
bool
|
bool
|
||||||
board_has_value (
|
board_has_value (
|
||||||
struct board *board,
|
const struct board *board,
|
||||||
board_pos x,
|
board_pos x,
|
||||||
board_pos y
|
board_pos y
|
||||||
)
|
)
|
||||||
@ -132,7 +132,7 @@ board_has_value (
|
|||||||
|
|
||||||
element_value
|
element_value
|
||||||
board_get_value (
|
board_get_value (
|
||||||
struct board *board,
|
const struct board *board,
|
||||||
board_pos x,
|
board_pos x,
|
||||||
board_pos y
|
board_pos y
|
||||||
)
|
)
|
||||||
@ -163,7 +163,7 @@ board_is_marked (
|
|||||||
|
|
||||||
bool
|
bool
|
||||||
board_can_place_value (
|
board_can_place_value (
|
||||||
struct board *board,
|
const struct board *board,
|
||||||
board_pos x,
|
board_pos x,
|
||||||
board_pos y,
|
board_pos y,
|
||||||
element_value value
|
element_value value
|
||||||
@ -574,13 +574,11 @@ board_place (
|
|||||||
board_unmark (board, target_x, target_y, value);
|
board_unmark (board, target_x, target_y, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Set value */
|
/* Set value */
|
||||||
board_set (board, x, y, value);
|
board_set (board, x, y, value);
|
||||||
|
|
||||||
/* Update board complexity */
|
/* Update board complexity */
|
||||||
board_refresh_complexity (board);
|
return board_refresh_complexity (board);
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
else return false;
|
else return false;
|
||||||
}
|
}
|
||||||
@ -588,7 +586,38 @@ board_place (
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void
|
struct board *
|
||||||
|
board_place_speculative (
|
||||||
|
const struct board *board,
|
||||||
|
board_pos x,
|
||||||
|
board_pos y,
|
||||||
|
element_value value
|
||||||
|
)
|
||||||
|
{
|
||||||
|
if (is_in_bounds (x, y) && is_valid_value (value))
|
||||||
|
{
|
||||||
|
/* Ensure value can be placed*/
|
||||||
|
if (board_can_place_value (board, x, y, value))
|
||||||
|
{
|
||||||
|
/* Create duplicate and place value */
|
||||||
|
struct board *board_duplicate = malloc (sizeof (struct board));
|
||||||
|
board_copy (board, board_duplicate);
|
||||||
|
|
||||||
|
if (! board_place (board_duplicate, x, y, value))
|
||||||
|
{
|
||||||
|
free (board_duplicate);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
return board_duplicate;
|
||||||
|
}
|
||||||
|
else return NULL;
|
||||||
|
}
|
||||||
|
else ERROR("Invalid parameters to function board_place_speculative()");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
bool
|
||||||
board_refresh_complexity (struct board *board)
|
board_refresh_complexity (struct board *board)
|
||||||
{
|
{
|
||||||
board_update_all_marks (board);
|
board_update_all_marks (board);
|
||||||
@ -601,17 +630,23 @@ board_refresh_complexity (struct board *board)
|
|||||||
struct board_element *elem = BOARD_ELEM (board, x, y);
|
struct board_element *elem = BOARD_ELEM (board, x, y);
|
||||||
if (elem->complexity < board->complexity)
|
if (elem->complexity < board->complexity)
|
||||||
{
|
{
|
||||||
|
/* If complexity is somehow 0, we have an invalid board state */
|
||||||
|
if (elem->complexity == 0)
|
||||||
|
return false;
|
||||||
|
|
||||||
board->complexity = elem->complexity;
|
board->complexity = elem->complexity;
|
||||||
|
|
||||||
/* Short-circuit function on comlpexity=1, since it can't go lower */
|
/* Short-circuit function on comlpexity=1, since it can't go lower */
|
||||||
if (board->complexity == 1)
|
if (board->complexity == 1)
|
||||||
return;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* If there are no complex board elements, board is solved */
|
/* If there are no complex board elements, board is solved */
|
||||||
if (board->complexity == 10)
|
if (board->complexity == 10)
|
||||||
board->complexity = 0;
|
board->complexity = 0;
|
||||||
|
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
24
board.h
24
board.h
@ -102,7 +102,7 @@ board_unmark (
|
|||||||
*/
|
*/
|
||||||
bool
|
bool
|
||||||
board_has_value (
|
board_has_value (
|
||||||
struct board *board,
|
const struct board *board,
|
||||||
board_pos x,
|
board_pos x,
|
||||||
board_pos y
|
board_pos y
|
||||||
);
|
);
|
||||||
@ -115,7 +115,7 @@ board_has_value (
|
|||||||
*/
|
*/
|
||||||
element_value
|
element_value
|
||||||
board_get_value (
|
board_get_value (
|
||||||
struct board *board,
|
const struct board *board,
|
||||||
board_pos x,
|
board_pos x,
|
||||||
board_pos y
|
board_pos y
|
||||||
);
|
);
|
||||||
@ -141,7 +141,7 @@ board_is_marked (
|
|||||||
*/
|
*/
|
||||||
bool
|
bool
|
||||||
board_can_place_value (
|
board_can_place_value (
|
||||||
struct board *board,
|
const struct board *board,
|
||||||
board_pos x,
|
board_pos x,
|
||||||
board_pos y,
|
board_pos y,
|
||||||
element_value value
|
element_value value
|
||||||
@ -251,11 +251,27 @@ board_place (
|
|||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Place a speculative value. This allocates a duplicate board with the element
|
||||||
|
* placed at the given location, if possible, while leaving the given board
|
||||||
|
* untouched
|
||||||
|
*
|
||||||
|
* NOTE: If element cannot be placed, this returns NULL
|
||||||
|
*/
|
||||||
|
struct board *
|
||||||
|
board_place_speculative (
|
||||||
|
const struct board *board,
|
||||||
|
board_pos x,
|
||||||
|
board_pos y,
|
||||||
|
element_value value
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Recomputes board complexity by searching all elements on board for the
|
* Recomputes board complexity by searching all elements on board for the
|
||||||
* lowest complexity
|
* lowest complexity
|
||||||
*/
|
*/
|
||||||
void
|
bool
|
||||||
board_refresh_complexity (struct board *board);
|
board_refresh_complexity (struct board *board);
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user