h48

A prototype for an optimal Rubik's cube solver, work in progress.
git clone https://git.tronto.net/h48
Download | Log | Files | Refs | README | LICENSE

commit 56d78292269f6a6b02a0e18dc21e5a3aacf7c462
parent 7011ec18920aa2e29f7cfa1b754b636ed9cadeac
Author: Sebastiano Tronto <sebastiano@tronto.net>
Date:   Thu, 10 Oct 2024 08:28:21 +0200

Removed un-common function from common.h

Diffstat:
Msrc/arch/common.h | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/src/arch/common.h b/src/arch/common.h @@ -1,7 +1,6 @@ STATIC void pieces(cube_t *, uint8_t [static 8], uint8_t [static 12]); STATIC_INLINE bool equal(cube_t, cube_t); STATIC_INLINE cube_t invertco(cube_t); -STATIC_INLINE cube_t compose_epcpeo(cube_t, cube_t); STATIC_INLINE cube_t compose_edges(cube_t, cube_t); STATIC_INLINE cube_t compose_corners(cube_t, cube_t); STATIC_INLINE cube_t compose(cube_t, cube_t);