diff --git a/src/logic/future_moves.rs b/src/logic/future_moves.rs index 1a03df3..1fafebc 100644 --- a/src/logic/future_moves.rs +++ b/src/logic/future_moves.rs @@ -78,8 +78,6 @@ impl std::fmt::Display for FutureMoveConfig { pub enum ChildrenEvalMethod { /// Best (by far) strat compared to Max or Min Average, - Max, - Min, } impl FutureMoves { @@ -286,8 +284,6 @@ impl FutureMoves { .into_iter() .sum::() .checked_div(self.arena[idx].children.len() as i32), - ChildrenEvalMethod::Max => children_values.into_iter().max(), - ChildrenEvalMethod::Min => children_values.into_iter().min(), } .unwrap_or(0);