diff --git a/src/logic/future_moves.rs b/src/logic/future_moves.rs index b6ba15d..12b34dc 100644 --- a/src/logic/future_moves.rs +++ b/src/logic/future_moves.rs @@ -79,8 +79,10 @@ impl std::fmt::Display for FutureMoveConfig { #[derive(Debug, Clone, Copy, Allocative)] #[allow(dead_code)] pub enum ChildrenEvalMethod { - /// Best (by far) strat compared to Max or Min Average, + /// AverageDivDepth gives the agent a sense of + /// time when it comes to how far away a potential win or gain + /// is. This performs much better in the Elo Arena than `Average` AverageDivDepth, }