From a08a29930b7799f45e3a8a97be20f9e04fa49d69 Mon Sep 17 00:00:00 2001 From: Maurizio Monge Date: Fri, 12 Oct 2007 00:52:24 +0200 Subject: [PATCH] Fix typo --- search.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/search.cpp b/search.cpp index c3918fd..cfd8243 100644 --- a/search.cpp +++ b/search.cpp @@ -557,7 +557,7 @@ int16_t SearchRoot::search(int ply, int base_depth, bool pv, int16_t orig_alpha, } #endif - if(quiesce && (best <= INFWORST_MATE-MAX_PV || ply>70) ) + if(quiesce && (best <= WORST_MATE-MAX_PV || ply>70) ) { best = board.evaluate(engine->st_computer_color, alpha, beta); lower_bound = best; //we have at the very least "best" as lower bound now. -- 2.11.4.GIT