From 04dddcdaa893b3901aeda9820b1165f8d7e6083c Mon Sep 17 00:00:00 2001 From: tali Date: Sun, 16 Apr 2023 15:54:57 -0400 Subject: [PATCH] drop useless TODO --- fish/src/bot.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/fish/src/bot.rs b/fish/src/bot.rs index 4d32f24..e708d45 100644 --- a/fish/src/bot.rs +++ b/fish/src/bot.rs @@ -28,7 +28,6 @@ pub struct Bot { impl Bot { /// Constructs a new bot from the given initial state (matrix and queue). - // TODO: specify weights pub fn new(weights: &Weights, matrix: &Mat, queue: Queue<'_>) -> Self { let arena = bumpalo::Bump::new(); let root = Node::alloc_root(&arena, matrix, queue);