8 #include "playout/light.h"
12 #define PLDEBUGL(n) DEBUGL_(p->debug_level, n)
16 playout_light_choose(struct playout_policy
*p
, struct board
*b
, enum stone to_play
)
22 struct playout_policy
*
23 playout_light_init(char *arg
, struct board
*b
)
25 struct playout_policy
*p
= calloc2(1, sizeof(*p
));
26 p
->choose
= playout_light_choose
;
29 fprintf(stderr
, "playout-light: This policy does not accept arguments (%s)\n", arg
);