From 9ec8a3176a8fe57877548f2226a91d702c63b849 Mon Sep 17 00:00:00 2001 From: simon Date: Sat, 17 Apr 2010 13:27:12 +0000 Subject: [PATCH] Fix from James H for an assertion failure during Signpost generation. To reproduce, try 'signpost --generate 1 7x7#12345-162'. git-svn-id: svn://svn.tartarus.org/sgt/puzzles@8921 cda61777-01e9-0310-a592-d414129be87e --- signpost.c | 1 + 1 file changed, 1 insertion(+) diff --git a/signpost.c b/signpost.c index d4812a2..b6db3a3 100644 --- a/signpost.c +++ b/signpost.c @@ -752,6 +752,7 @@ static int new_game_strip(game_state *state, random_state *rs) copy->flags[j] |= FLAG_IMMUTABLE; state->flags[j] |= FLAG_IMMUTABLE; debug_state("Copy of state: ", copy); + strip_nums(copy); if (solve_state(copy) > 0) goto solved; assert(check_nums(state, copy, 1)); } -- 2.11.0