8 #include "playout/light.h"
12 /* This file is licensed under the same way as Pachi base, not
15 #define PLDEBUGL(n) DEBUGL_(p->debug_level, n)
19 playout_light_choose(struct playout_policy
*p
, struct board
*b
, enum stone our_real_color
)
25 struct playout_policy
*
26 playout_light_init(char *arg
)
28 struct playout_policy
*p
= calloc(1, sizeof(*p
));
29 p
->choose
= playout_light_choose
;
32 fprintf(stderr
, "playout-light: This policy does not accept arguments (%s)\n", arg
);