aboutsummaryrefslogtreecommitdiff
path: root/test/071_coord_eo
diff options
context:
space:
mode:
authorSebastiano Tronto <sebastiano@tronto.net>2024-06-09 12:43:49 +0200
committerSebastiano Tronto <sebastiano@tronto.net>2024-06-09 12:43:49 +0200
commitc5c5017a335208881e27fc8f72c1d0145a04622a (patch)
tree7a1518e5b05f3fbde810fa3080c41099ba7d5ae8 /test/071_coord_eo
parent28ad019d62583b7e89b4e76922aa73857d5876eb (diff)
downloadnissy-core-c5c5017a335208881e27fc8f72c1d0145a04622a.tar.gz
nissy-core-c5c5017a335208881e27fc8f72c1d0145a04622a.zip
Remvoed cube_fast_t and more. More cleaning up to do.
Diffstat (limited to 'test/071_coord_eo')
-rw-r--r--test/071_coord_eo/coord_eo_tests.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/071_coord_eo/coord_eo_tests.c b/test/071_coord_eo/coord_eo_tests.c
index 5eec4fc..3defb8b 100644
--- a/test/071_coord_eo/coord_eo_tests.c
+++ b/test/071_coord_eo/coord_eo_tests.c
@@ -1,18 +1,16 @@
1#include "../test.h" 1#include "../test.h"
2 2
3int64_t coord_fast_eo(cube_fast_t); 3int64_t coord_eo(cube_t);
4 4
5int main(void) { 5int main(void) {
6 char str[STRLENMAX]; 6 char str[STRLENMAX];
7 cube_t cube; 7 cube_t cube;
8 cube_fast_t fast;
9 int64_t result; 8 int64_t result;
10 9
11 fgets(str, STRLENMAX, stdin); 10 fgets(str, STRLENMAX, stdin);
12 cube = readcube("H48", str); 11 cube = readcube("H48", str);
13 fast = cubetofast(cube);
14 12
15 result = coord_fast_eo(fast); 13 result = coord_eo(cube);
16 14
17 printf("%" PRId64 "\n", result); 15 printf("%" PRId64 "\n", result);
18 16

Generated with cgit - Back to sebastiano.tronto.net