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 /src/cube.c | |
| 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 'src/cube.c')
| -rw-r--r-- | src/cube.c | 14 |
1 files changed, 11 insertions, 3 deletions
| @@ -19,7 +19,6 @@ | |||
| 19 | #define DBG_ASSERT(condition, retval, ...) | 19 | #define DBG_ASSERT(condition, retval, ...) |
| 20 | #endif | 20 | #endif |
| 21 | 21 | ||
| 22 | #include "cube.h" | ||
| 23 | #include "constants.h" | 22 | #include "constants.h" |
| 24 | 23 | ||
| 25 | #if defined(CUBE_AVX2) | 24 | #if defined(CUBE_AVX2) |
| @@ -32,8 +31,17 @@ | |||
| 32 | #include "cube_portable.h" | 31 | #include "cube_portable.h" |
| 33 | #endif | 32 | #endif |
| 34 | 33 | ||
| 35 | #include "cube_routines.h" | 34 | #include "constant_cubes.h" |
| 36 | #include "cube_transform.h" /* TODO: merge with cube_routines? */ | 35 | #include "cube_generic.h" |
| 36 | |||
| 37 | /* TODO: work in progress */ | ||
| 38 | #if 0 | ||
| 39 | #include "constant_cubes_transform.h" | ||
| 40 | #include "cube_transform.h" | ||
| 41 | #else | ||
| 42 | #include "cube_transform_with_switch.h" | ||
| 43 | #endif | ||
| 44 | |||
| 37 | #include "moves.h" | 45 | #include "moves.h" |
| 38 | #include "solve_h48.h" | 46 | #include "solve_h48.h" |
| 39 | #include "solve_generic.h" | 47 | #include "solve_generic.h" |
