add some missing docs

This commit is contained in:
Simon Gardling 2025-04-08 15:14:08 -04:00
parent 9fa864e6eb
commit c368e8da60
Signed by: titaniumtown
GPG Key ID: 9AB28AC10ECE533D

View File

@ -20,8 +20,10 @@ pub struct FutureMoves {
/// Color w.r.t
agent_color: Piece,
/// Config of the Tree
config: FutureMoveConfig,
/// State of the board at the root node
board: Board,
}
@ -44,10 +46,13 @@ pub struct FutureMoveConfig {
/// the arena is of that size or bigger
pub max_arena_size: usize,
/// should the tree be pruned at all?
pub do_prune: bool,
/// should status messages be printed?
pub print: bool,
/// What should the children be evaluated based upon?
pub children_eval_method: ChildrenEvalMethod,
}