diff options
Diffstat (limited to 'test/071_coord_eo')
| -rw-r--r-- | test/071_coord_eo/coord_eo_tests.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/test/071_coord_eo/coord_eo_tests.c b/test/071_coord_eo/coord_eo_tests.c index 85128e0..5951042 100644 --- a/test/071_coord_eo/coord_eo_tests.c +++ b/test/071_coord_eo/coord_eo_tests.c | |||
| @@ -1,19 +1,14 @@ | |||
| 1 | #include "../test.h" | 1 | #include "../test.h" |
| 2 | 2 | ||
| 3 | int64_t coord_fast_eo(cube_fast_t); | ||
| 4 | cube_fast_t cubetofast(cube_t); | ||
| 5 | |||
| 6 | int main(void) { | 3 | int main(void) { |
| 7 | char str[STRLENMAX]; | 4 | char str[STRLENMAX]; |
| 8 | cube_t cube; | 5 | cube_t cube; |
| 9 | cube_fast_t fast; | ||
| 10 | int64_t result; | 6 | int64_t result; |
| 11 | 7 | ||
| 12 | fgets(str, STRLENMAX, stdin); | 8 | fgets(str, STRLENMAX, stdin); |
| 13 | cube = readcube("H48", str); | 9 | cube = readcube("H48", str); |
| 14 | fast = cubetofast(cube); | ||
| 15 | 10 | ||
| 16 | result = coord_fast_eo(fast); | 11 | result = cube_coord_eo(cube); |
| 17 | 12 | ||
| 18 | printf("%" PRId64 "\n", result); | 13 | printf("%" PRId64 "\n", result); |
| 19 | 14 | ||
