From c368e8da6077883db283ea64fb77795e66a8ec87 Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Tue, 8 Apr 2025 15:14:08 -0400 Subject: [PATCH] add some missing docs --- src/logic/future_moves.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/logic/future_moves.rs b/src/logic/future_moves.rs index 07aed66..c5350a2 100644 --- a/src/logic/future_moves.rs +++ b/src/logic/future_moves.rs @@ -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, }