diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2024-06-09 12:43:49 +0200 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2024-06-09 12:43:49 +0200 |
| commit | c5c5017a335208881e27fc8f72c1d0145a04622a (patch) | |
| tree | 7a1518e5b05f3fbde810fa3080c41099ba7d5ae8 /test/074_coord_esep | |
| parent | 28ad019d62583b7e89b4e76922aa73857d5876eb (diff) | |
| download | nissy-core-c5c5017a335208881e27fc8f72c1d0145a04622a.tar.gz nissy-core-c5c5017a335208881e27fc8f72c1d0145a04622a.zip | |
Remvoed cube_fast_t and more. More cleaning up to do.
Diffstat (limited to 'test/074_coord_esep')
| -rw-r--r-- | test/074_coord_esep/coord_esep_tests.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/074_coord_esep/coord_esep_tests.c b/test/074_coord_esep/coord_esep_tests.c index fa21d67..0ed3ef3 100644 --- a/test/074_coord_esep/coord_esep_tests.c +++ b/test/074_coord_esep/coord_esep_tests.c | |||
| @@ -1,18 +1,16 @@ | |||
| 1 | #include "../test.h" | 1 | #include "../test.h" |
| 2 | 2 | ||
| 3 | int64_t coord_fast_esep(cube_fast_t); | 3 | int64_t coord_esep(cube_t); |
| 4 | 4 | ||
| 5 | int main(void) { | 5 | int 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_esep(fast); | 13 | result = coord_esep(cube); |
| 16 | 14 | ||
| 17 | printf("%" PRId64 "\n", result); | 15 | printf("%" PRId64 "\n", result); |
| 18 | 16 | ||
