Force iteration to start at 1 in analyze mode
[bonanza.git] / iterate.c
index 1a684bc..e47c42b 100644 (file)
--- a/iterate.c
+++ b/iterate.c
@@ -210,7 +210,7 @@ iterate( tree_t * restrict ptree )
        (int)ptree->nsuc_check[0], (int)ptree->nsuc_check[1] );
 
   /* 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" );
 
@@ -223,7 +223,7 @@ iterate( tree_t * restrict ptree )
     }
 
   /* 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