From c5c5017a335208881e27fc8f72c1d0145a04622a Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Sun, 9 Jun 2024 12:43:49 +0200 Subject: Remvoed cube_fast_t and more. More cleaning up to do. --- test/077_copy_edges/copy_edges_tests.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'test/077_copy_edges') diff --git a/test/077_copy_edges/copy_edges_tests.c b/test/077_copy_edges/copy_edges_tests.c index b428f89..9afcb73 100644 --- a/test/077_copy_edges/copy_edges_tests.c +++ b/test/077_copy_edges/copy_edges_tests.c @@ -1,23 +1,19 @@ #include "../test.h" -void copy_edges_fast(cube_fast_t *, cube_fast_t); +void copy_edges(cube_t *, cube_t); int main(void) { char str[STRLENMAX]; cube_t c1, c2; - cube_fast_t f1, f2; fgets(str, STRLENMAX, stdin); c1 = readcube("H48", str); - f1 = cubetofast(c1); fgets(str, STRLENMAX, stdin); c2 = readcube("H48", str); - f2 = cubetofast(c2); - copy_edges_fast(&f1, f2); + copy_edges(&c1, c2); - c1 = fasttocube(f1); if (iserror(c1)) { printf("Error setting EO\n"); } else if (!isconsistent(c1)) { -- cgit v1.3