Commit 8a4015aa authored by Gaurav Kukreja's avatar Gaurav Kukreja

Removed unnecessary printf from pv-split-interactive

parent 683e2cd4
...@@ -49,6 +49,7 @@ void ABIDStrategy::searchBestMove() ...@@ -49,6 +49,7 @@ void ABIDStrategy::searchBestMove()
} }
currentValue = pv_split(alpha, beta); currentValue = pv_split(alpha, beta);
if (_sc && _sc->verbose())
printf("Subsearch finished with currentValue = %d\n", currentValue); printf("Subsearch finished with currentValue = %d\n", currentValue);
/* stop searching if a win position is found */ /* stop searching if a win position is found */
...@@ -161,7 +162,6 @@ int ABIDStrategy::pv_split(int alpha0, int beta0) ...@@ -161,7 +162,6 @@ int ABIDStrategy::pv_split(int alpha0, int beta0)
slave_input.depth = depth+1; slave_input.depth = depth+1;
slave_input.currentMaxDepth = _currentMaxDepth; slave_input.currentMaxDepth = _currentMaxDepth;
printf("Thread 0 testing %d moves at depth = %d\n",list.getLength(), depth);
while ( list.getNext(m, Move::none) ) while ( list.getNext(m, Move::none) )
{ {
slave_input.move = m; slave_input.move = m;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment