From f4abe067e9d6d7c78aec540007b58624fba72167 Mon Sep 17 00:00:00 2001 From: nils <48135649+Nilstrieb@users.noreply.github.com> Date: Mon, 16 Jan 2023 10:54:44 +0100 Subject: [PATCH] because reasons --- minmax-rs/src/minmax.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/minmax-rs/src/minmax.rs b/minmax-rs/src/minmax.rs index 94017f7..2839df6 100644 --- a/minmax-rs/src/minmax.rs +++ b/minmax-rs/src/minmax.rs @@ -43,7 +43,6 @@ impl PerfectPlayer { ) -> Score { // FIXME: Make depth decrease not increase. if let Some(max_depth) = self.max_depth && depth >= max_depth { - // FIXME: Why do we have rate and result? return board.rate(maximizing_player); }