chore: fix warnings

This commit is contained in:
dogeystamp 2024-11-16 21:56:53 -05:00
parent 4ca186b67e
commit 71594051f5
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ use chess_inator::Board;
use std::io; use std::io;
use std::sync::mpsc::channel; use std::sync::mpsc::channel;
use std::thread; use std::thread;
use std::time::{Duration, Instant}; use std::time::Duration;
/// UCI protocol says to ignore any unknown words. /// UCI protocol says to ignore any unknown words.
/// ///

View File

@ -14,7 +14,7 @@ Copyright © 2024 dogeystamp <dogeystamp@disroot.org>
//! Game-tree search. //! Game-tree search.
use crate::eval::{Eval, EvalInt}; use crate::eval::{Eval, EvalInt};
use crate::movegen::{Move, MoveGen, ToUCIAlgebraic}; use crate::movegen::{Move, MoveGen};
use crate::{Board, Piece}; use crate::{Board, Piece};
use std::cmp::max; use std::cmp::max;
use std::sync::mpsc; use std::sync::mpsc;