diff options
Diffstat (limited to 'src/moves.c')
| -rw-r--r-- | src/moves.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/moves.c b/src/moves.c index 7c33db4..02880ca 100644 --- a/src/moves.c +++ b/src/moves.c | |||
| @@ -138,17 +138,17 @@ static char equiv_alg_string[100][NMOVES] = { | |||
| 138 | }; | 138 | }; |
| 139 | 139 | ||
| 140 | /* Transition tables, to be loaded up at the beginning */ | 140 | /* Transition tables, to be loaded up at the beginning */ |
| 141 | static int epose_mtable[NMOVES][FACTORIAL12/FACTORIAL8]; | 141 | int epose_mtable[NMOVES][FACTORIAL12/FACTORIAL8]; |
| 142 | static int eposs_mtable[NMOVES][FACTORIAL12/FACTORIAL8]; | 142 | int eposs_mtable[NMOVES][FACTORIAL12/FACTORIAL8]; |
| 143 | static int eposm_mtable[NMOVES][FACTORIAL12/FACTORIAL8]; | 143 | int eposm_mtable[NMOVES][FACTORIAL12/FACTORIAL8]; |
| 144 | static int eofb_mtable[NMOVES][POW2TO11]; | 144 | int eofb_mtable[NMOVES][POW2TO11]; |
| 145 | static int eorl_mtable[NMOVES][POW2TO11]; | 145 | int eorl_mtable[NMOVES][POW2TO11]; |
| 146 | static int eoud_mtable[NMOVES][POW2TO11]; | 146 | int eoud_mtable[NMOVES][POW2TO11]; |
| 147 | static int cp_mtable[NMOVES][FACTORIAL8]; | 147 | int cp_mtable[NMOVES][FACTORIAL8]; |
| 148 | static int coud_mtable[NMOVES][POW3TO7]; | 148 | int coud_mtable[NMOVES][POW3TO7]; |
| 149 | static int cofb_mtable[NMOVES][POW3TO7]; | 149 | int cofb_mtable[NMOVES][POW3TO7]; |
| 150 | static int corl_mtable[NMOVES][POW3TO7]; | 150 | int corl_mtable[NMOVES][POW3TO7]; |
| 151 | static int cpos_mtable[NMOVES][FACTORIAL6]; | 151 | int cpos_mtable[NMOVES][FACTORIAL6]; |
| 152 | 152 | ||
| 153 | 153 | ||
| 154 | /* Local functions implementation ********************************************/ | 154 | /* Local functions implementation ********************************************/ |
