URAVE_DEBUG fprintf()

in pachi_py/pachi/uct/policy/ucb1amaf.c [134:143]


		URAVE_DEBUG fprintf(stderr, "[ltree] adding [%s] %f%%%d to [%s] RAVE %f%%%d\n",
			coord2sstr(node_coord(lnode), tree->board), l.value, l.playouts,
			coord2sstr(node_coord(node), tree->board), r.value, r.playouts);
		stats_merge(&r, &l);
	}

	/* Criticality heuristics. */
	if (b->crit_rave > 0 && (b->crit_plthres_coef > 0
				 ? node->u.playouts > tree->root->u.playouts * b->crit_plthres_coef
				 : node->u.playouts > b->crit_min_playouts)) {