diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2023-11-08 14:04:36 +0100 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2023-11-08 14:04:36 +0100 |
| commit | 72c9082c9824c7ffecc97a94083aa350956285e4 (patch) | |
| tree | 77f1184e58887f618f30678821b8e2672799d852 /cube.h | |
| parent | 41d6b7aea5f1c9abddf5377dc6f37d8d197e548b (diff) | |
| download | nissy-core-72c9082c9824c7ffecc97a94083aa350956285e4.tar.gz nissy-core-72c9082c9824c7ffecc97a94083aa350956285e4.zip | |
Change include statement
Diffstat (limited to 'cube.h')
| -rw-r--r-- | cube.h | 3 |
1 files changed, 1 insertions, 2 deletions
| @@ -1,5 +1,4 @@ | |||
| 1 | #ifdef CUBE_AVX2 | 1 | #ifdef CUBE_AVX2 |
| 2 | #include <immintrin.h> | ||
| 3 | typedef __m256i cube_t; | 2 | typedef __m256i cube_t; |
| 4 | #else | 3 | #else |
| 5 | typedef struct { | 4 | typedef struct { |
| @@ -34,4 +33,4 @@ cube_t transform(cube_t, trans_t); | |||
| 34 | int16_t coord_eo(cube_t); | 33 | int16_t coord_eo(cube_t); |
| 35 | 34 | ||
| 36 | /* Solvers return -1 in case of error, the number of solutions otherwise */ | 35 | /* Solvers return -1 in case of error, the number of solutions otherwise */ |
| 37 | int solve_small(cube_t, uint8_t, int, move_t *); | 36 | int solve_generic(cube_t, int (*)(cube_t), uint8_t, int, move_t *); |
