1 #ifndef PACHI_UCT_PLUGINS_H
2 #define PACHI_UCT_PLUGINS_H
9 /* The pluginset structure of current UCT context. */
11 struct uct_pluginset
*pluginset_init(struct board
*b
);
12 void pluginset_done(struct uct_pluginset
*ps
);
14 /* Load a new plugin with DLL at path, passed arguments in args. */
15 void plugin_load(struct uct_pluginset
*ps
, char *path
, char *args
);
17 /* Query plugins for priors of a node's leaves. */
18 void plugin_prior(struct uct_pluginset
*ps
, struct tree_node
*node
, struct prior_map
*map
, int eqex
);