From 5856237e3f397ae2db2a0c69e5648386507b019f Mon Sep 17 00:00:00 2001 From: Tomasz Sobczyk Date: Wed, 14 Oct 2020 19:59:31 +0200 Subject: [PATCH] Rename hirate to startpos --- src/learn/learn.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/learn/learn.cpp b/src/learn/learn.cpp index b09700e9..d0e84945 100644 --- a/src/learn/learn.cpp +++ b/src/learn/learn.cpp @@ -768,12 +768,11 @@ namespace Learner atomic move_accord_count; move_accord_count = 0; - // Display the value of eval() in the initial stage of Hirate and see the shaking. auto th = Threads[thread_id]; auto& pos = th->rootPos; StateInfo si; pos.set(StartFEN, false, &si, th); - cout << "hirate eval = " << Eval::evaluate(pos) << endl; + cout << "startpos eval = " << Eval::evaluate(pos) << endl; // It's better to parallelize here, but it's a bit // troublesome because the search before slave has not finished.