aboutsummaryrefslogtreecommitdiff
path: root/test/082_invcoord_epe
diff options
context:
space:
mode:
Diffstat (limited to 'test/082_invcoord_epe')
-rw-r--r--test/082_invcoord_epe/00_all.in0
-rw-r--r--test/082_invcoord_epe/00_all.out1
-rw-r--r--test/082_invcoord_epe/invcoord_epe_tests.c32
3 files changed, 0 insertions, 33 deletions
diff --git a/test/082_invcoord_epe/00_all.in b/test/082_invcoord_epe/00_all.in
deleted file mode 100644
index e69de29..0000000
--- a/test/082_invcoord_epe/00_all.in
+++ /dev/null
diff --git a/test/082_invcoord_epe/00_all.out b/test/082_invcoord_epe/00_all.out
deleted file mode 100644
index d6109db..0000000
--- a/test/082_invcoord_epe/00_all.out
+++ /dev/null
@@ -1 +0,0 @@
1All good
diff --git a/test/082_invcoord_epe/invcoord_epe_tests.c b/test/082_invcoord_epe/invcoord_epe_tests.c
deleted file mode 100644
index 69c3c50..0000000
--- a/test/082_invcoord_epe/invcoord_epe_tests.c
+++ /dev/null
@@ -1,32 +0,0 @@
1#include "../test.h"
2
3#define FACT_4 24
4
5uint64_t coord_epe(cube_t);
6cube_t invcoord_epe(uint64_t);
7
8void run(void) {
9 oriented_cube_t cube;
10 uint64_t coord, coord2;
11
12 cube.orientation = 0;
13
14 /* Test all possible values for CP coordinate */
15 for (coord = 0; coord < FACT_4; coord++) {
16 cube.cube = invcoord_epe(coord);
17
18 if (!isconsistent(cube)) {
19 printf("Not consistent\n");
20 return;
21 }
22
23 coord2 = coord_epe(cube.cube);
24 if (coord != coord2) {
25 printf("Error: invcoord of %" PRIu64
26 " returns %" PRIu64 "\n", coord, coord2);
27 return;
28 }
29 }
30
31 printf("All good\n");
32}

Generated with cgit - Back to sebastiano.tronto.net