-
Notifications
You must be signed in to change notification settings - Fork 0
/
mark.c
172 lines (157 loc) · 4.75 KB
/
mark.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
/*
* sku - analysis tool for Sudoku puzzles
* Copyright (C) 2005 Richard P. Curnow
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#include "sku.h"
struct intpair {/*{{{*/
int a;
int b;
};
/*}}}*/
static int compare_intpair(const void *a, const void *b)/*{{{*/
{
const struct intpair *aa = (const struct intpair *) a;
const struct intpair *bb = (const struct intpair *) b;
if (aa->b < bb->b) return 1;
else if (aa->b > bb->b) return -1;
else return 0;
}
/*}}}*/
static void weed_terminals(struct layout *lay, int *order)/*{{{*/
{
char *dead_terminal;
int i, j;
dead_terminal = new_array(char, lay->nc);
memset(dead_terminal, 0, lay->nc * sizeof(char));
#if 0
fprintf(stderr, "The following cells are terminals:\n");
for (i=0; i<lay->nc; i++) {
if (lay->cells[i].is_terminal) {
fprintf(stderr, " %4d : %s\n", order[i], lay->cells[i].name);
}
}
#endif
for (i=0; i<lay->ng; i++) {
short *base = lay->groups + lay->ns * i;
int highest = -1;
for (j=0; j<lay->ns; j++) {
int jc = base[j];
if (lay->cells[jc].is_terminal) {
if (highest < order[jc]) {
highest = order[jc];
}
}
}
for (j=0; j<lay->ns; j++) {
int jc = base[j];
if (lay->cells[jc].is_terminal) {
if (highest > order[jc]) {
dead_terminal[jc] = 1;
}
}
}
}
for (i=0; i<lay->nc; i++) {
if (dead_terminal[i]) {
#if 0
fprintf(stderr, "Weeding terminal <%s>\n", lay->cells[i].name);
#endif
lay->cells[i].is_terminal = 0;
}
}
free(dead_terminal);
#if 0
fprintf(stderr, "The following cells remain as terminals:\n");
for (i=0; i<lay->nc; i++) {
if (lay->cells[i].is_terminal) {
fprintf(stderr, " %4d : %s\n", order[i], lay->cells[i].name);
}
}
#endif
}
/*}}}*/
void mark_cells(int grey_cells, const struct constraint *simplify_cons, int options)/*{{{*/
{
int *state;
int *copy;
struct intpair *shade = NULL;
int *order;
int i, j;
struct layout *lay;
int score;
read_grid(&lay, &state, options);
if (grey_cells > 0) {
order = new_array(int, lay->nc);
copy = new_array(int, lay->nc);
memcpy(copy, state, lay->nc * sizeof(int));
memset(order, 0, lay->nc * sizeof(int));
setup_terminals(lay);
infer(lay, copy, order, &score, simplify_cons, OPT_SPECULATE);
fprintf(stderr, "SCORE : %d\n", score);
weed_terminals(lay, order);
shade = new_array(struct intpair, lay->nc);
for (i=0; i<lay->nc; i++) {
shade[i].a = i;
shade[i].b = order[i];
}
qsort(shade, lay->nc, sizeof(struct intpair), compare_intpair);
if (options & OPT_VERBOSE) {
int pos = 1;
fprintf(stderr, "Cells which provide no clues to solving others:\n");
fprintf(stderr, " N : Ord : Cell\n");
for (i=0; i<lay->nc; i++) {
int ix, ord;
ix = shade[i].a;
ord = shade[i].b;
if (lay->cells[ix].is_terminal) {
fprintf(stderr, " %3d : %4d : <%s>\n", pos++, ord, lay->cells[ix].name);
}
}
}
for (i=0, j=0; i<grey_cells; i++) {
int ic;
int xc;
do {
ic = shade[j++].a;
} while ((j < lay->nc) && (!lay->cells[ic].is_terminal) && (state[ic] == CELL_EMPTY));
/* The check for CELL_EMPTY above is for the case where we're marking
* symmetric cells; if an earlier terminal was symmetric with cell 'ic'
* we'll already have marked it, in which case move onto the next
* terminal. */
if (j >= lay->nc) {
fprintf(stderr, "Didn't have enough terminal cells to allocate %d greys (allocated %d)\n", grey_cells, i);
break;
}
state[ic] = CELL_MARKED;
for (xc = SYM(ic); xc != ic; xc = SYM(xc)) {
if (state[xc] == CELL_EMPTY) {
state[xc] = CELL_MARKED;
} else {
fprintf(stderr, "warning: <%s> is symmetric with <%s> but can't be marked\n",
lay->cells[xc].name, lay->cells[ic].name);
}
}
}
free(order);
free(copy);
free(shade);
}
display(stdout, lay, state);
free(state);
free_layout(lay);
}
/*}}}*/