RCS file: /sources/gnugo/gnugo/engine/boardlib.c,v
retrieving revision 1.12
diff -u -r1.12 boardlib.c
|
|
|
|
| 28 | 28 | |
| 29 | 29 | /* The board state itself. */ |
| 30 | 30 | int board_size = DEFAULT_BOARD_SIZE; /* board size */ |
| | 31 | int board_nextrow = MAX_BOARD - DEFAULT_BOARD_SIZE + 2; // used by scan_board |
| 31 | 32 | Intersection board[BOARDSIZE]; |
| 32 | 33 | int board_ko_pos; |
| 33 | 34 | int white_captured; /* number of black and white stones captured */ |
| … |
… |
|
| 54 | 55 | /* Hashing of positions. */ |
| 55 | 56 | Hash_data board_hash; |
| 56 | 57 | |
| 57 | | int stackp; /* stack pointer */ |
| | 58 | int stackp; /* moves stack depth */ |
| 58 | 59 | int position_number; /* position number */ |
| 59 | 60 | |
| 60 | 61 | /* Some statistics gathered partly in board.c and hash.c */ |