]> git.sesse.net Git - stockfish/blobdiff - src/uci.cpp
Remove some useless include
[stockfish] / src / uci.cpp
index 39270c6ff93697b1ff3206f4022637be613fecad..cc3a271d6f201af8210e4d521093443f6a3ed783 100644 (file)
@@ -216,15 +216,13 @@ namespace {
     limits.time = time[pos.side_to_move()];
     limits.increment = inc[pos.side_to_move()];
 
-    assert(pos.is_ok());
-
     return think(pos, limits, searchMoves);
   }
 
 
   // perft() is called when engine receives the "perft" command.
   // The function calls perft() passing the required search depth
-  // then prints counted nodes and elapsed time.
+  // then prints counted leaf nodes and elapsed time.
 
   void perft(Position& pos, UCIParser& up) {