diff options
Diffstat (limited to 'src/solvers/coord/eo.h')
| -rw-r--r-- | src/solvers/coord/eo.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/solvers/coord/eo.h b/src/solvers/coord/eo.h index a0685c4..c8faaea 100644 --- a/src/solvers/coord/eo.h +++ b/src/solvers/coord/eo.h | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | STATIC uint64_t coordinate_eo_coord(cube_t, const void *); | 1 | STATIC uint64_t coordinate_eo_coord(cube_t, const unsigned char *); |
| 2 | STATIC cube_t coordinate_eo_cube(uint64_t, const void *); | 2 | STATIC cube_t coordinate_eo_cube(uint64_t, const unsigned char *); |
| 3 | STATIC bool coordinate_eo_isnasty(uint64_t, const void *); | 3 | STATIC bool coordinate_eo_isnasty(uint64_t, const unsigned char *); |
| 4 | STATIC size_t coordinate_eo_gendata(void *); | 4 | STATIC size_t coordinate_eo_gendata(unsigned char *); |
| 5 | STATIC bool is_eo_even(cube_t); | 5 | STATIC bool is_eo_even(cube_t); |
| 6 | 6 | ||
| 7 | STATIC coord_t coordinate_eo = { | 7 | STATIC coord_t coordinate_eo = { |
| @@ -24,13 +24,13 @@ STATIC coord_t coordinate_eo = { | |||
| 24 | }; | 24 | }; |
| 25 | 25 | ||
| 26 | STATIC uint64_t | 26 | STATIC uint64_t |
| 27 | coordinate_eo_coord(cube_t c, const void *data) | 27 | coordinate_eo_coord(cube_t c, const unsigned char *data) |
| 28 | { | 28 | { |
| 29 | return (uint64_t)coord_eo(c); | 29 | return (uint64_t)coord_eo(c); |
| 30 | } | 30 | } |
| 31 | 31 | ||
| 32 | STATIC cube_t | 32 | STATIC cube_t |
| 33 | coordinate_eo_cube(uint64_t c, const void *data) | 33 | coordinate_eo_cube(uint64_t c, const unsigned char *data) |
| 34 | { | 34 | { |
| 35 | cube_t cube = SOLVED_CUBE; | 35 | cube_t cube = SOLVED_CUBE; |
| 36 | set_eo(&cube, (int64_t)c); | 36 | set_eo(&cube, (int64_t)c); |
| @@ -38,13 +38,13 @@ coordinate_eo_cube(uint64_t c, const void *data) | |||
| 38 | } | 38 | } |
| 39 | 39 | ||
| 40 | STATIC bool | 40 | STATIC bool |
| 41 | coordinate_eo_isnasty(uint64_t c, const void *data) | 41 | coordinate_eo_isnasty(uint64_t c, const unsigned char *data) |
| 42 | { | 42 | { |
| 43 | return false; | 43 | return false; |
| 44 | } | 44 | } |
| 45 | 45 | ||
| 46 | STATIC size_t | 46 | STATIC size_t |
| 47 | coordinate_eo_gendata(void *data) | 47 | coordinate_eo_gendata(unsigned char *data) |
| 48 | { | 48 | { |
| 49 | return 0; | 49 | return 0; |
| 50 | } | 50 | } |
