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. --- src/cube.h | 17 ----------------- 1 file changed, 17 deletions(-) (limited to 'src/cube.h') diff --git a/src/cube.h b/src/cube.h index 694560a..3cbc3b5 100644 --- a/src/cube.h +++ b/src/cube.h @@ -25,23 +25,6 @@ you operate on the cube only via the functions provided below, you don't need to worry about this. ******************************************************************************/ -typedef struct { - uint8_t corner[8]; - uint8_t edge[12]; -} cube_t; - -/* Returns a copy of the solved cube */ -cube_t solvedcube(void); - -/* Basic checks on the cube */ -bool isconsistent(cube_t); -bool issolvable(cube_t); -bool issolved(cube_t); -bool equal(cube_t, cube_t); - -/* All functions can return an error value, use iserror() to check this */ -bool iserror(cube_t); - /* Apply the second cube on the first as a move sequence */ cube_t compose(cube_t, cube_t); -- cgit v1.3