diff options
| author | Sebastiano Tronto <sebastiano.tronto@gmail.com> | 2022-03-15 15:54:39 +0100 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano.tronto@gmail.com> | 2022-03-15 15:54:39 +0100 |
| commit | e18f8e4eefadd733d985e99e2710111afa5a710a (patch) | |
| tree | 196033c8f04e760b8b6f4d445c70ca17143e0179 /src/moves.h | |
| parent | def25ea64b097d2a994eb33c91dc66248233afec (diff) | |
| download | nissy-e18f8e4eefadd733d985e99e2710111afa5a710a.tar.gz nissy-e18f8e4eefadd733d985e99e2710111afa5a710a.zip | |
Prepare for big changes in coordinates
Diffstat (limited to 'src/moves.h')
| -rw-r--r-- | src/moves.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/moves.h b/src/moves.h index e7881a4..14ae087 100644 --- a/src/moves.h +++ b/src/moves.h | |||
| @@ -5,6 +5,21 @@ | |||
| 5 | #include "cube.h" | 5 | #include "cube.h" |
| 6 | #include "env.h" | 6 | #include "env.h" |
| 7 | 7 | ||
| 8 | /* | ||
| 9 | * Tables are exposed to allow for faster moves in some cases. | ||
| 10 | */ | ||
| 11 | extern int epose_mtable[NMOVES][FACTORIAL12/FACTORIAL8]; | ||
| 12 | extern int eposs_mtable[NMOVES][FACTORIAL12/FACTORIAL8]; | ||
| 13 | extern int eposm_mtable[NMOVES][FACTORIAL12/FACTORIAL8]; | ||
| 14 | extern int eofb_mtable[NMOVES][POW2TO11]; | ||
| 15 | extern int eorl_mtable[NMOVES][POW2TO11]; | ||
| 16 | extern int eoud_mtable[NMOVES][POW2TO11]; | ||
| 17 | extern int cp_mtable[NMOVES][FACTORIAL8]; | ||
| 18 | extern int coud_mtable[NMOVES][POW3TO7]; | ||
| 19 | extern int cofb_mtable[NMOVES][POW3TO7]; | ||
| 20 | extern int corl_mtable[NMOVES][POW3TO7]; | ||
| 21 | extern int cpos_mtable[NMOVES][FACTORIAL6]; | ||
| 22 | |||
| 8 | Cube apply_alg(Alg *alg, Cube cube); | 23 | Cube apply_alg(Alg *alg, Cube cube); |
| 9 | Cube apply_alg_generic(Alg *alg, Cube c, PieceFilter f, bool a); | 24 | Cube apply_alg_generic(Alg *alg, Cube c, PieceFilter f, bool a); |
| 10 | Cube apply_move(Move m, Cube cube); | 25 | Cube apply_move(Move m, Cube cube); |
