From 03c9ebfa52d12a4f1b53e393b68bc41cbefe497b Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Sat, 14 Sep 2013 14:20:14 +0200 Subject: [PATCH 1/1] Force iteration to start at 1 in analyze mode Starting at a high depth based on a previous PV is undesirable here, especially when that PV might start with a move that is now excluded. --- iterate.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/iterate.c b/iterate.c index d940814..14d4f80 100644 --- a/iterate.c +++ b/iterate.c @@ -170,7 +170,7 @@ iterate( tree_t * restrict ptree, int flag ) adjust_fmg(); /* look up last pv. */ - if ( last_pv.length ) + if ( last_pv.length && ! analyze_mode ) { Out( "- a pv was found in the previous search result.\n" ); @@ -183,7 +183,7 @@ iterate( tree_t * restrict ptree, int flag ) } /* probe the transposition table, since last pv is not available. */ - if ( ! last_pv.length + if ( ! last_pv.length && ! analyze_mode #if defined(MPV) && ! root_mpv #endif -- 1.7.0.4