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/104_cocsep_ttrep/00_all.in | 0 test/104_cocsep_ttrep/00_all.out | 0 test/104_cocsep_ttrep/cocsep_ttrep_tests.c | 34 ------------------------------ 3 files changed, 34 deletions(-) delete mode 100644 test/104_cocsep_ttrep/00_all.in delete mode 100644 test/104_cocsep_ttrep/00_all.out delete mode 100644 test/104_cocsep_ttrep/cocsep_ttrep_tests.c (limited to 'test/104_cocsep_ttrep') diff --git a/test/104_cocsep_ttrep/00_all.in b/test/104_cocsep_ttrep/00_all.in deleted file mode 100644 index e69de29..0000000 diff --git a/test/104_cocsep_ttrep/00_all.out b/test/104_cocsep_ttrep/00_all.out deleted file mode 100644 index e69de29..0000000 diff --git a/test/104_cocsep_ttrep/cocsep_ttrep_tests.c b/test/104_cocsep_ttrep/cocsep_ttrep_tests.c deleted file mode 100644 index 87975a4..0000000 --- a/test/104_cocsep_ttrep/cocsep_ttrep_tests.c +++ /dev/null @@ -1,34 +0,0 @@ -#include "../test.h" - -uint8_t inverse_trans(uint8_t); -cube_t transform_corners(cube_t, uint8_t); -int64_t coord_cocsep(cube_t); -size_t gendata_cocsep(unsigned char *, uint64_t *, cube_t *); - -void run(void) { - uint8_t t; - unsigned char buf[2000000]; - uint32_t *cocsepdata, tt; - uint64_t i, selfsim[COCSEP_CLASSES]; - int64_t j, k, l; - cube_t rep[COCSEP_CLASSES], c, d; - - gendata_cocsep(buf, selfsim, rep); - cocsepdata = (uint32_t *)((char *)buf + INFOSIZE); - - for (i = 0; i < COCSEP_CLASSES; i++) { - c = rep[i]; - for (t = 0; t < 48; t++) { - d = transform_corners(c, t); - j = coord_cocsep(d); - tt = TTREP(cocsepdata[j]); - d = transform_corners(d, tt); - k = coord_cocsep(d); - l = coord_cocsep(c); - if (k != l) - printf("cocsep %" PRId64 " (%" PRId64 "): " - "%" PRId64 " ttrep %" PRIu32 - " -> %" PRId64 "\n", i, l, j, tt, k); - } - } -} -- cgit v1.3