From 93f64577c34677017726894cf8268ca1ffc3593b Mon Sep 17 00:00:00 2001 From: Marco Costalba Date: Sun, 16 May 2010 08:56:58 +0100 Subject: [PATCH] Fix RootMove::operator<() description Reported by Melvin Sprague. No functional change. Signed-off-by: Marco Costalba --- src/search.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/search.cpp b/src/search.cpp index 768b0594..1a01601b 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -122,7 +122,7 @@ namespace { // RootMove::operator<() is the comparison function used when // sorting the moves. A move m1 is considered to be better // than a move m2 if it has a higher score, or if the moves - // have equal score but m1 has the higher node count. + // have equal score but m1 has the higher beta cut-off count. bool operator<(const RootMove& m) const { return score != m.score ? score < m.score : theirBeta <= m.theirBeta; -- 2.39.2