UCT tree_node: Store coord as a short
[pachi.git] / uct / tree.h
blobeb54381985a270cdeeb625bfcea114764b92492f
1 #ifndef ZZGO_UCT_TREE_H
2 #define ZZGO_UCT_TREE_H
4 /* Management of UCT trees. See diagram below for the node structure.
6 * Two allocation methods are supported for the tree nodes:
8 * - calloc/free: each node is allocated with one calloc.
9 * After a move, all nodes except the subtree rooted at
10 * the played move are freed one by one with free().
11 * Since this can be very slow (seen 9s and loss on time because
12 * of this) the nodes are freed in a background thread.
13 * We still reserve enough memory for the next move in case
14 * the background thread doesn't free nodes fast enough.
16 * - fast_alloc: a large buffer is allocated once, and each
17 * node allocation takes some of this buffer. After a move
18 * is played, no memory if freed if the buffer still has
19 * enough free space. Otherwise the subtree rooted at the
20 * played move is copied to a temporary buffer, pruning it
21 * if necessary to fit in this small buffer. We copy by
22 * preference nodes with largest number of playouts.
23 * Then the temporary buffer is copied back to the original
24 * buffer, which has now plenty of space.
25 * Once the fast_alloc mode is proven reliable, the
26 * calloc/free method will be removed. */
28 #include <stdbool.h>
29 #include <pthread.h>
30 #include "move.h"
31 #include "stats.h"
32 #include "probdist.h"
34 struct board;
35 struct uct;
38 * +------+
39 * | node |
40 * +------+
41 * / <- parent
42 * +------+ v- sibling +------+
43 * | node | ------------ | node |
44 * +------+ +------+
45 * | <- children |
46 * +------+ +------+ +------+ +------+
47 * | node | - | node | | node | - | node |
48 * +------+ +------+ +------+ +------+
51 struct tree_node {
52 hash_t hash;
53 struct tree_node *parent, *sibling, *children;
55 /*** From here on, struct is saved/loaded from opening book */
57 unsigned short depth; // just for statistics
59 /* Common Fate Graph distance from parent, but at most TREE_NODE_D_MAX+1 */
60 #define TREE_NODE_D_MAX 3
61 unsigned char d;
63 #define TREE_HINT_INVALID 1 // don't go to this node, invalid move
64 unsigned char hints;
66 /* coord is usually coord_t, but this is very space-sensitive. */
67 short coord;
69 /* In case multiple threads walk the tree, is_expanded is set
70 * atomically. Only the first thread setting it expands the node.
71 * The node goes through 3 states:
72 * 1) children == null, is_expanded == false: leaf node
73 * 2) children == null, is_expanded == true: one thread currently expanding
74 * 2) children != null, is_expanded == true: fully expanded node */
75 bool is_expanded;
77 struct move_stats u;
78 struct move_stats prior;
79 /* XXX: Should be way for policies to add their own stats */
80 struct move_stats amaf;
81 /* Stats before starting playout; used for distributed engine. */
82 struct move_stats pu;
85 struct tree_hash;
87 struct tree {
88 struct board *board;
89 struct tree_node *root;
90 struct board_symmetry root_symmetry;
91 enum stone root_color;
93 /* Whether to use any extra komi during score counting. This is
94 * tree-specific variable since this can arbitrarily change between
95 * moves. */
96 bool use_extra_komi;
97 /* The value of applied extra komi. For DYNKOMI_LINEAR, this value
98 * is only informative, the actual value is computed per simulation
99 * based on leaf node depth. */
100 float extra_komi;
102 /* We merge local (non-tenuki) sequences for both colors, occuring
103 * anywhere in the tree; nodes are created on-demand, special 'pass'
104 * nodes represent tenuki. Only u move_stats are used, prior and amaf
105 * is ignored. Values in root node are ignored. */
106 /* The values in the tree can be either "raw" or "tempered"
107 * (representing difference against parent node in the main tree),
108 * controlled by local_tree setting. */
109 struct tree_node *ltree_black;
110 // Of course even in white tree, winrates are from b's perspective
111 // as anywhere else. ltree_white has white-first sequences as children.
112 struct tree_node *ltree_white;
113 // Aging factor; 2 means halve all playout values after each turn.
114 // 1 means don't age at all.
115 float ltree_aging;
117 /* Hash table used when working as slave for the distributed engine.
118 * Maps coordinate path to tree node. */
119 struct tree_hash *htable;
120 int hbits;
122 // Statistics
123 int max_depth;
124 volatile unsigned long nodes_size; // byte size of all allocated nodes
125 unsigned long max_tree_size; // maximum byte size for entire tree, > 0 only for fast_alloc
126 void *nodes; // nodes buffer, only for fast_alloc
129 /* Warning: all functions below except tree_expand_node & tree_leaf_node are THREAD-UNSAFE! */
130 struct tree *tree_init(struct board *board, enum stone color, unsigned long max_tree_size, float ltree_aging, int hbits);
131 void tree_done(struct tree *tree);
132 void tree_dump(struct tree *tree, int thres);
133 void tree_save(struct tree *tree, struct board *b, int thres);
134 void tree_load(struct tree *tree, struct board *b);
136 struct tree_node *tree_get_node(struct tree *tree, struct tree_node *node, coord_t c, bool create);
137 struct tree_node *tree_garbage_collect(struct tree *tree, unsigned long max_size, struct tree_node *node);
138 void tree_promote_node(struct tree *tree, struct tree_node **node);
139 bool tree_promote_at(struct tree *tree, struct board *b, coord_t c);
141 void tree_expand_node(struct tree *tree, struct tree_node *node, struct board *b, enum stone color, struct uct *u, int parity);
142 struct tree_node *tree_lnode_for_node(struct tree *tree, struct tree_node *ni, struct tree_node *lni, int tenuki_d);
144 static bool tree_leaf_node(struct tree_node *node);
146 /* Get black parity from parity within the tree. */
147 #define tree_parity(tree, parity) \
148 (tree->root_color == S_WHITE ? (parity) : -1 * (parity))
150 /* Get a 0..1 value to maximize; @parity is parity within the tree. */
151 #define tree_node_get_value(tree, parity, value) \
152 (tree_parity(tree, parity) > 0 ? value : 1 - value)
154 static inline bool
155 tree_leaf_node(struct tree_node *node)
157 return !(node->children);
160 /* Leave always at least 10% memory free for the next move: */
161 #define MIN_FREE_MEM_PERCENT 10ULL
163 #endif