diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2024-04-13 15:48:19 +0200 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2024-04-13 15:48:19 +0200 |
| commit | 3ab2f98170908277f70191846e84e5dde185a056 (patch) | |
| tree | 4c243866a0c004bc061e56975b48367d0ac276b6 /test/071_coord_eo | |
| parent | a18d4b0ba97b301193597a963a77a40ef7c2254b (diff) | |
| download | cubecore-3ab2f98170908277f70191846e84e5dde185a056.tar.gz cubecore-3ab2f98170908277f70191846e84e5dde185a056.zip | |
removed fast
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 | ||
