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/test.h | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'test/test.h') diff --git a/test/test.h b/test/test.h index ab40bde..1bbb9fc 100644 --- a/test/test.h +++ b/test/test.h @@ -6,16 +6,14 @@ #define STRLENMAX 10000 +#ifdef CUBE_AVX2 +#include +typedef __m256i cube_t; +#else typedef struct { uint8_t corner[8]; uint8_t edge[12]; } cube_t; - -#ifdef CUBE_AVX2 -#include -typedef __m256i cube_fast_t; -#else -typedef cube_t cube_fast_t; #endif /* Basic functions used in most tests */ @@ -26,5 +24,3 @@ bool issolvable(cube_t); bool issolved(cube_t); cube_t readcube(char *, char *); void writecube(char *, cube_t, char *); -cube_t fasttocube(cube_fast_t); -cube_fast_t cubetofast(cube_t); -- cgit v1.3