RCS file: /cvsroot/gnugo/gnugo/engine/owl.c,v
retrieving revision 1.250
diff -u -r1.250 owl.c
|
|
|
|
| 2054 | 2054 | * send-two-return-one sacrifice. |
| 2055 | 2055 | */ |
| 2056 | 2056 | const char *name = "defense move"; |
| | 2057 | SGFTree *save_sgf_dumptree = sgf_dumptree; |
| | 2058 | int save_count_variations = count_variations; |
| | 2059 | |
| | 2060 | sgf_dumptree = NULL; |
| | 2061 | count_variations = 0; |
| 2057 | 2062 | |
| 2058 | 2063 | if (is_suicide(dpos, other) || send_two_return_one(dpos, other)) { |
| 2059 | 2064 | int dpos2; |
| … |
… |
|
| 2067 | 2072 | } |
| 2068 | 2073 | } |
| 2069 | 2074 | |
| | 2075 | sgf_dumptree = save_sgf_dumptree; |
| | 2076 | count_variations = save_count_variations; |
| | 2077 | |
| 2070 | 2078 | if (dpos != NO_MOVE) { |
| 2071 | 2079 | set_single_owl_move(shape_moves, dpos, name); |
| 2072 | 2080 | moves = shape_moves; |