RCS file: /sources/gnugo/gnugo/engine/endgame.c,v
retrieving revision 1.13
diff -u -r1.13 endgame.c
|
|
|
|
| 50 | 50 | /* Try to generate some moves using endgame_analyze_worm_liberties(). See |
| 51 | 51 | * the description of that function to find what moves it generates. |
| 52 | 52 | */ |
| 53 | | for (pos = BOARDMIN; pos < BOARDMAX; pos++) { |
| | 53 | scan_board(pos, |
| 54 | 54 | /* We are only interested in alive, but not invincible worms which are |
| 55 | 55 | * parts of alive dragons. That is, the position must be stable. |
| 56 | 56 | */ |
| … |
… |
|
| 63 | 63 | endgame_analyze_worm_liberties(pos, color); |
| 64 | 64 | endgame_find_backfilling_dame(pos, color); |
| 65 | 65 | } |
| 66 | | } |
| | 66 | ) |
| 67 | 67 | } |
| 68 | 68 | |
| 69 | 69 | |