Merge branch 'master' of git+ssh://repo.or.cz/srv/git/pachi
[pachi/ann.git] / tactics / 2lib.h
blob9619c002c5ea610eb0bfcb003d9ad64ea5d54e9d
1 #ifndef ZZGO_TACTICS_2LIB_H
2 #define ZZGO_TACTICS_2LIB_H
4 /* Two-liberty tactical checks (i.e. dealing with two-step capturing races,
5 * preventing atari). */
7 #include "board.h"
8 #include "debug.h"
10 struct move_queue;
12 void group_2lib_check(struct board *b, group_t group, enum stone to_play, struct move_queue *q, int tag);
14 #endif