repo.or.cz
/
pachi
/
peepo.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
group_atari_check(): Do not consider any defending move when attacking
[pachi/peepo.git]
/
tactics
/
nlib.h
blob
74aff4d959cfe3b299345c41f49eeec9313584c5
1
#ifndef ZZGO_TACTICS_NLIB_H
2
#define ZZGO_TACTICS_NLIB_H
3
4
/* N-liberty semeai defense tactical checks. */
5
6
#include
"board.h"
7
#include
"debug.h"
8
9
struct
move_queue
;
10
11
void
group_nlib_defense_check
(
struct
board
*
b
,
group_t group
,
enum
stone to_play
,
struct
move_queue
*
q
,
int
tag
);
12
13
#endif