Rev 31 | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line | 
|---|---|---|---|
| 31 | pmbaty | 1 | # Initialization script for the chess engine. | 
| 2 | # | ||
| 3 | # This file is parsed by Chess Giants and each line that is not commented nor | ||
| 4 | # empty is sent verbatim to the chess engine at the beginning of each game, | ||
| 5 | # right after engine initialization, prior to any move command. You can put | ||
| 6 | # here every engine-specific initialization command you want. | ||
| 7 | |||
| 8 | # terminate extra threads when idle | ||
| 9 | smpnice 1 | ||
| 10 | |||
| 11 | # memory consumption of the engine is roughly the sum of these. If your | ||
| 12 | # system is low on memory, or if you've got plenty, you may halve or double | ||
| 13 | # these values. Please only divide and multiply by a factor of two. | ||
| 14 | hash 384M | ||
| 15 | hashp 128M | ||
| 16 | cache 32M | ||
| 17 | |||
| 18 | # disable logging | ||
| 19 | log off | ||
| 20 | |||
| 21 | # don't beep when playing a move | ||
| 22 | alarm off | ||
| 23 | |||
| 24 | # ignore forfeits on time | ||
| 25 | flag off | ||
| 26 | |||
| 27 | # don't learn anything (our opponent may be dumber than us) | ||
| 28 | learn off | ||
| 51 | pmbaty | 29 | |
| 30 | # switch to xboard mode | ||
| 31 | xboard |