From 270e5b0444f67781856bf80db51650af9cb89b0c Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Thu, 17 Jul 2025 08:54:44 +0200 Subject: Renamed tests to make space for more coordinate tests --- test/102_cocsep_selfsim/cocsep_selfsim_tests.c | 39 -------------------------- 1 file changed, 39 deletions(-) delete mode 100644 test/102_cocsep_selfsim/cocsep_selfsim_tests.c (limited to 'test/102_cocsep_selfsim/cocsep_selfsim_tests.c') diff --git a/test/102_cocsep_selfsim/cocsep_selfsim_tests.c b/test/102_cocsep_selfsim/cocsep_selfsim_tests.c deleted file mode 100644 index 1a1c6f2..0000000 --- a/test/102_cocsep_selfsim/cocsep_selfsim_tests.c +++ /dev/null @@ -1,39 +0,0 @@ -/* - * This test is tricky, we only have two cases for now: the solved cube - * and the cube that is one quarter-turn-move off (all such cases are - * equivalent due to symmetry). Adding more tests requires figuring out - * by hand which one is the first position in its class to be reached. - * Note that the .out files need a space before each newline. - */ -#include "../test.h" - -size_t gendata_cocsep(unsigned char *, uint64_t *, cube_t *); -int64_t coord_cocsep(cube_t); - -void run(void) { - char str[STRLENMAX]; - unsigned char buf[2000000]; - uint32_t *cocsepdata, data; - int64_t coord, coclass; - uint64_t selfsim[COCSEP_CLASSES], sim, t; - oriented_cube_t cube; - cube_t rep[COCSEP_CLASSES]; - - gendata_cocsep(buf, selfsim, rep); - cocsepdata = (uint32_t *)(buf + INFOSIZE); - - /* All cases in the same test so we do not generate data many times */ - - while (fgets(str, STRLENMAX, stdin) != NULL) { - cube = readcube(str); - coord = coord_cocsep(cube.cube); - data = cocsepdata[coord]; - coclass = (data & (0xFFFU << 16)) >> 16; - sim = selfsim[coclass]; - for (t = 0; t < 48 && sim; t++, sim >>= 1) { - if (sim & 1) - printf("%" PRId64 " ", t); - } - printf("\n"); - } -} -- cgit v1.3