We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9547cd commit 665b231Copy full SHA for 665b231
src/main.c
@@ -20,7 +20,7 @@
20
21
#define ENGINE "Tucano"
22
#define AUTHOR "Alcides Schulz"
23
-#define VERSION "11.22"
+#define VERSION "11.23"
24
25
void develop_workbench(void);
26
double bench(int depth, int print);
src/search_main.c
@@ -233,7 +233,9 @@ void *iterative_deepening(void *pv_game)
233
// collect best and ponder moves
234
if (game->is_main_thread) {
235
game->search.best_move = game->pv_line.line[0][0];
236
- game->search.ponder_move = game->pv_line.line[0][1];
+ if (game->pv_line.size[0] > 1) {
237
+ game->search.ponder_move = game->pv_line.line[0][1];
238
+ }
239
}
240
241
return NULL;
0 commit comments