Nicolas Winkler %!s(int64=2) %!d(string=hai) anos
pai
achega
4146fb3e97
Modificáronse 1 ficheiros con 3 adicións e 3 borrados
  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 {