From 8c5f48d61627a986dc9feb8092f1f465b7f90ebc Mon Sep 17 00:00:00 2001 From: enricotenuti Date: Tue, 15 Oct 2024 10:34:13 +0200 Subject: Neon uint8x8_t corners and minor fixes --- src/solvers/h48/solve.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/solvers/h48/solve.h') diff --git a/src/solvers/h48/solve.h b/src/solvers/h48/solve.h index 8f55501..82c8358 100644 --- a/src/solvers/h48/solve.h +++ b/src/solvers/h48/solve.h @@ -19,7 +19,7 @@ typedef struct { uint8_t premoves[MAXLEN]; } dfsarg_solveh48_t; -STATIC uint32_t allowednextmove_h48(uint8_t *, uint8_t, uint32_t); +STATIC uint32_t allowednextmove_h48(uint8_t *, uint8_t, uint8_t); STATIC void solve_h48_appendsolution(dfsarg_solveh48_t *); STATIC_INLINE bool solve_h48_stop(dfsarg_solveh48_t *); @@ -28,7 +28,7 @@ STATIC int64_t solve_h48(cube_t, int8_t, int8_t, int8_t, uint64_t, const void *, uint64_t, char *); STATIC uint32_t -allowednextmove_h48(uint8_t *moves, uint8_t n, uint32_t h48branch) +allowednextmove_h48(uint8_t *moves, uint8_t n, uint8_t h48branch) { uint32_t result = MM_ALLMOVES; if (h48branch & MM_NORMALBRANCH) @@ -258,4 +258,4 @@ solve_h48( solve_h48_error_data: LOG("solve_h48: error reading table\n"); return NISSY_ERROR_DATA; -} +} \ No newline at end of file -- cgit v1.3