diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2024-10-14 00:05:43 +0200 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2024-10-14 14:45:22 +0200 |
| commit | 8a91354f7b94c669c77fe628a81f9bfe9f599ef0 (patch) | |
| tree | ba29a8b0416cb3464b49fd7cfb69e7f407b892c8 /src/core/cube.h | |
| parent | 7dbd34574f629cacf3b89292d2a06ad0ae612f26 (diff) | |
| download | nissy-core-8a91354f7b94c669c77fe628a81f9bfe9f599ef0.tar.gz nissy-core-8a91354f7b94c669c77fe628a81f9bfe9f599ef0.zip | |
Interface changes, progress with python
Diffstat (limited to 'src/core/cube.h')
| -rw-r--r-- | src/core/cube.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/cube.h b/src/core/cube.h index a3c3e14..49d868c 100644 --- a/src/core/cube.h +++ b/src/core/cube.h | |||
| @@ -4,7 +4,7 @@ STATIC bool isconsistent(cube_t); | |||
| 4 | STATIC bool issolvable(cube_t); | 4 | STATIC bool issolvable(cube_t); |
| 5 | STATIC bool issolved(cube_t); | 5 | STATIC bool issolved(cube_t); |
| 6 | STATIC bool iserror(cube_t); | 6 | STATIC bool iserror(cube_t); |
| 7 | STATIC void getcube_fix(int64_t *, int64_t *, int64_t *, int64_t *); | 7 | STATIC void getcube_fix(long long *, long long *, long long *, long long *); |
| 8 | STATIC cube_t getcube(int64_t, int64_t, int64_t, int64_t); | 8 | STATIC cube_t getcube(int64_t, int64_t, int64_t, int64_t); |
| 9 | 9 | ||
| 10 | /* This is used only in tests, use SOLVED_CUBE directly everywhere else */ | 10 | /* This is used only in tests, use SOLVED_CUBE directly everywhere else */ |
| @@ -128,7 +128,7 @@ iserror(cube_t cube) | |||
| 128 | } | 128 | } |
| 129 | 129 | ||
| 130 | STATIC void | 130 | STATIC void |
| 131 | getcube_fix(int64_t *ep, int64_t *eo, int64_t *cp, int64_t *co) | 131 | getcube_fix(long long *ep, long long *eo, long long *cp, long long *co) |
| 132 | { | 132 | { |
| 133 | uint8_t e[12], c[8], coarr[8]; | 133 | uint8_t e[12], c[8], coarr[8]; |
| 134 | 134 | ||
