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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
|
#define COCSEP_CLASSES 3393U
#define COCSEP_TABLESIZE (_3p7 << 7U)
#define COCSEP_VISITEDSIZE ((COCSEP_TABLESIZE + 7U) / 8U)
#define COCSEP_INFOSIZE 12U
#define COCSEP_FULLSIZE (4 * (COCSEP_TABLESIZE + COCSEP_INFOSIZE))
#define ESEP_TABLESIZE ((COCSEP_CLASSES * _12c4 * _8c4) / 2U)
#define ESEP_VISITEDSIZE ((ESEP_TABLESIZE * 2U + 7U) / 8U)
#define ESEP_INFOSIZE 25 /* TODO unknown yet */
#define H48_ESIZE ((_12c4 * _8c4) << h)
#define _esep_ind(i) (i / 8U)
#define _esep_shift(i) (4U * (i % 8U))
#define _esep_mask(i) (((1U << 4U) - 1U) << _esep_shift(i))
#define _visited_ind(i) (i / 8U)
#define _visited_mask(i) (1U << (i % 8U))
typedef struct {
cube_fast_t cube;
uint8_t depth;
uint8_t maxdepth;
uint16_t *n;
uint32_t *buf32;
uint8_t *visited;
uint64_t *selfsim;
cube_fast_t *rep;
} dfsarg_cocsep_t;
typedef struct {
cube_fast_t cube;
uint8_t *visited;
uint8_t *moves;
uint8_t nmoves;
uint8_t depth;
uint16_t *nclasses;
uint32_t *cocsepdata;
uint32_t *buf32;
} dfsarg_esep_t;
_static_inline int64_t coord_h48(cube_fast_t, const uint32_t *, uint8_t);
_static_inline cube_fast_t invcoord_h48(int64_t, const cube_fast_t *, uint8_t);
_static size_t gendata_cocsep(void *, uint64_t *, cube_fast_t *);
_static uint32_t gendata_cocsep_dfs(dfsarg_cocsep_t *);
_static size_t gendata_esep(void *);
_static uint32_t gendata_esep_dfs(dfsarg_esep_t *);
_static_inline bool get_visited(const uint8_t *, int64_t);
_static_inline void set_visited(uint8_t *, int64_t);
_static_inline uint8_t get_esep_pval(const uint32_t *, int64_t);
_static_inline void set_esep_pval(uint32_t *, int64_t, uint8_t);
_static_inline int64_t
coord_h48(cube_fast_t c, const uint32_t *cocsepdata, uint8_t h)
{
cube_fast_t d;
int64_t cocsep, coclass, esep, eo, ret;
uint32_t data;
uint8_t ttrep;
DBG_ASSERT(h <= 11, -1, "coord_h48: h must be between 0 and 11\n");
cocsep = coord_fast_cocsep(c);
data = cocsepdata[cocsep];
coclass = (data & (0xFFFFU << 16U)) >> 16U;
ttrep = (data & (0xFFU << 8U)) >> 8U;
d = transform(c, ttrep); /* TODO: transform only edges */
esep = coord_fast_esep(d);
eo = coord_fast_eo(d);
ret = (coclass * H48_ESIZE) + (esep << h) + (eo >> (11-h));
return ret;
}
_static_inline cube_fast_t
invcoord_h48(int64_t i, const cube_fast_t *crep, uint8_t h)
{
cube_fast_t ret;
int64_t coclass, ee, esep, eo;
DBG_ASSERT(h <= 11, cubetofast(zero),
"invcoord_h48: h must be between 0 and 11\n");
coclass = i / H48_ESIZE;
ee = i % H48_ESIZE;
esep = ee >> h;
eo = (ee & ((1<<h)-1)) << (11-h);
ret = invcoord_fast_esep(esep);
copy_corners_fast(&ret, crep[coclass]);
set_eo_fast(&ret, eo);
return ret;
}
/*
Each element of the cocsep table is a uint32_t used as follows:
- Lowest 8-bit block: pruning value
- Second-lower 8-bit block: "ttrep" (transformation to representative)
- Top 16-bit block: symcoord value
After the data as described above, more auxiliary information is appended:
- A uint32_t representing the number of symmetry classes
- A uint32_t representing the highest value of the pruning table
- One uint32_t for each "line" of the pruning table, representing the number
of positions having that pruning value.
*/
_static size_t
gendata_cocsep(void *buf, uint64_t *selfsim, cube_fast_t *rep)
{
uint32_t *buf32, *info, cc;
uint16_t n;
uint8_t i, j, visited[COCSEP_VISITEDSIZE];
dfsarg_cocsep_t arg;
buf32 = (uint32_t *)buf;
info = buf32 + COCSEP_TABLESIZE;
memset(buf32, 0xFFU, sizeof(uint32_t) * COCSEP_TABLESIZE);
memset(info, 0, sizeof(uint32_t) * COCSEP_INFOSIZE);
memset(selfsim, 0, sizeof(uint64_t) * COCSEP_CLASSES);
arg = (dfsarg_cocsep_t) {
.cube = cubetofast(solvedcube()),
.n = &n,
.buf32 = buf32,
.visited = visited,
.selfsim = selfsim,
.rep = rep
};
for (i = 0, n = 0, cc = 0; i < 10; i++) {
DBG_LOG("cocsep: generating depth %" PRIu8 "\n", i);
memset(visited, 0, COCSEP_VISITEDSIZE);
arg.depth = 0;
arg.maxdepth = i;
cc = gendata_cocsep_dfs(&arg);
info[i+2] = cc;
DBG_LOG("found %" PRIu32 "\n", cc);
}
info[0] = (uint32_t)n;
info[1] = 9U; /* Known max pruning value */
DBG_ASSERT(n == COCSEP_CLASSES, 0,
"cocsep: computed %" PRIu16 " symmetry classes, "
"expected %" PRIu16 "\n", n, COCSEP_CLASSES);
DBG_LOG("cocsep data computed\n");
DBG_LOG("Symmetry classes: %" PRIu32 "\n", info[0]);
DBG_LOG("Maximum pruning value: %" PRIu32 "\n", info[1]);
DBG_LOG("Pruning value distribution:\n");
for (j = 0; j < 10; j++)
DBG_LOG("%" PRIu8 ":\t%" PRIu32 "\n", j, info[j+2]);
return COCSEP_FULLSIZE;
}
_static uint32_t
gendata_cocsep_dfs(dfsarg_cocsep_t *arg)
{
uint8_t m, t, tinv, olddepth;
uint32_t cc;
int64_t i;
uint64_t sim;
cube_fast_t d;
dfsarg_cocsep_t nextarg;
i = coord_fast_cocsep(arg->cube);
olddepth = (uint8_t)(arg->buf32[i] & 0xFFU);
if (olddepth < arg->depth || get_visited(arg->visited, i))
return 0;
set_visited(arg->visited, i);
if (arg->depth == arg->maxdepth) {
if ((arg->buf32[i] & 0xFFU) != 0xFFU)
return 0;
for (t = 0, cc = 0; t < 48; t++) {
d = transform(arg->cube, t);
sim = equal_fast(arg->cube, d);
arg->selfsim[*arg->n] |= sim << t;
i = coord_fast_cocsep(d);
set_visited(arg->visited, i);
tinv = inverse_trans(t);
cc += (arg->buf32[i] & 0xFFU) == 0xFFU;
arg->buf32[i] =
(*arg->n << 16U) | (tinv << 8U) | arg->depth;
}
arg->rep[*arg->n] = arg->cube;
(*arg->n)++;
return cc;
}
memcpy(&nextarg, arg, sizeof(dfsarg_cocsep_t));
nextarg.depth++;
for (m = 0, cc = 0; m < 18; m++) {
nextarg.cube = move(arg->cube, m);
cc += gendata_cocsep_dfs(&nextarg);
}
return cc;
}
/*
TODO description
generating fixed table with h=0, k=4
*/
_static size_t
gendata_esep(void *buf)
{
uint32_t *buf32, *info, *cocsepdata, cc;
uint8_t moves[20];
dfsarg_esep_t arg;
arg.visited = malloc(ESEP_TABLESIZE);
cocsepdata = (uint32_t *)buf;
buf32 = cocsepdata + COCSEP_FULLSIZE;
info = buf32 + ESEP_TABLESIZE;
memset(buf32, 0xFFU, sizeof(uint32_t) * ESEP_TABLESIZE);
memset(info, 0, sizeof(uint32_t) * ESEP_INFOSIZE);
arg.cube = cubetofast(solvedcube());
arg.moves = moves;
arg.nmoves = 0;
arg.cocsepdata = cocsepdata;
arg.buf32 = buf32;
/* TODO loop until no more is done, not until 12! (or hardcode limits)*/
/* TODO use bfs instead
how to work with different k? k=1 is the easiest */
for (arg.depth = 0, cc = 0; arg.depth < 12; arg.depth++) {
DBG_LOG("esep: generating depth %" PRIu8 "\n", arg.depth);
memset(arg.visited, 0, ESEP_VISITEDSIZE);
cc = gendata_esep_dfs(&arg);
info[arg.depth+1] = cc;
DBG_LOG("found %" PRIu32 "\n", cc);
}
free(arg.visited);
return COCSEP_FULLSIZE + cc;
}
_static uint32_t
gendata_esep_dfs(dfsarg_esep_t *arg)
{
uint8_t m, t, olddepth;
uint32_t cc;
uint64_t i;
cube_fast_t d;
dfsarg_esep_t nextarg;
if (!allowednextmove(arg->moves, arg->nmoves))
return 0;
if (arg->nmoves > 0)
arg->cube = move(arg->cube, arg->moves[arg->nmoves-1]);
i = coord_h48(arg->cube, arg->cocsepdata, 0U);
olddepth = get_esep_pval(arg->buf32, i);
if (olddepth < arg->nmoves || get_visited(arg->visited, i))
return 0;
set_visited(arg->visited, i);
if (arg->nmoves == arg->depth) {
if (olddepth != 15U)
return 0;
for (t = 0, cc = 0; t < 48; t++) {
d = transform(arg->cube, t);
i = coord_h48(d, arg->cocsepdata, 0U);
set_visited(arg->visited, i);
cc += get_esep_pval(arg->buf32, i) == 15U;
set_esep_pval(arg->buf32, i, arg->depth);
}
return cc;
}
nextarg = *arg;
nextarg.nmoves = arg->nmoves + 1;
for (m = 0, cc = 0; m < 18; m++) {
nextarg.cube = arg->cube;
nextarg.moves[arg->nmoves] = m;
cc += gendata_esep_dfs(&nextarg);
}
return cc;
}
_static_inline bool get_visited(const uint8_t *a, int64_t i)
{
return a[_visited_ind(i)] & _visited_mask(i);
}
_static_inline void set_visited(uint8_t *a, int64_t i)
{
a[_visited_ind(i)] |= _visited_mask(i);
}
_static_inline uint8_t
get_esep_pval(const uint32_t *buf32, int64_t i)
{
return (buf32[_esep_ind(i)] & _esep_mask(i)) >> _esep_shift(i);
}
_static_inline void
set_esep_pval(uint32_t *buf32, int64_t i, uint8_t val)
{
buf32[_esep_ind(i)] =
(buf32[_esep_ind(i)] & (~_esep_mask(i))) | (val << _esep_shift(i));
}
|