]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
Some code and comment cleanup
[stockfish] / src / search.cpp
index 902ba0fc6915769c157ef096f6b83340049794db..77c5b2d3b8829a42ff31e75d743f9fe282d3d919 100644 (file)
@@ -539,12 +539,7 @@ void Thread::search(bool isMainThread) {
 
 namespace {
 
-  // search<>() is the main search function for both PV and non-PV nodes and for
-  // normal and SplitPoint nodes. When called just after a split point the search
-  // is simpler because we have already probed the hash table, done a null move
-  // search, and searched the first move before splitting, so we don't have to
-  // repeat all this work again. We also don't need to store anything to the hash
-  // table here: This is taken care of after we return from the split point.
+  // search<>() is the main search function for both PV and non-PV nodes
 
   template <NodeType NT>
   Value search(Position& pos, Stack* ss, Value alpha, Value beta, Depth depth, bool cutNode) {