add comment about ChildrenEvalMethod::AverageDivDepth

This commit is contained in:
Simon Gardling 2025-03-13 16:09:37 -04:00
parent 7e8ec5b451
commit 0f3266cfbb
Signed by: titaniumtown
GPG Key ID: 9AB28AC10ECE533D

View File

@ -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,
}