Nicolas Winkler 2 năm trước cách đây
mục cha
commit
4146fb3e97
1 tập tin đã thay đổi với 3 bổ sung3 xóa
  1. 3 3
      src/search.rs

+ 3 - 3
src/search.rs

@@ -264,9 +264,9 @@ impl SearchControl {
 
 
 
-/**
- * searches for moves and returns the best move found plus its value
- */
+/// 
+/// searches for moves and returns the best move found plus its value
+/// 
 pub fn search(mut board: Board, sc: &mut SearchControl, hashs: Arc<RwLock<Cache>>, mut alpha: PosValue, beta: PosValue, depth: i32) -> SearchResult {
     let mut hash = hashs.write().unwrap();
     if depth == 0 {