mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 07:27:46 +00:00
Remove history bonus from Eval
STC:
LLR: 2.92 (-2.94,2.94) {-1.50,0.50}
Total: 26776 W: 2787 L: 2725 D: 21264
https://tests.stockfishchess.org/tests/view/5f39d6beb38d442594aabd9b
LTC:
LLR: 2.93 (-2.94,2.94) {-1.50,0.50}
Total: 12968 W: 635 L: 608 D: 11725
https://tests.stockfishchess.org/tests/view/5f39decfb38d442594aabda7
closes https://github.com/official-stockfish/Stockfish/pull/3019
Bench: 4335100
This commit is contained in:
committed by
Joost VandeVondele
parent
65b976439f
commit
1c0b7bdf4f
+1
-5
@@ -794,11 +794,7 @@ namespace {
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
if ((ss-1)->currentMove != MOVE_NULL)
|
if ((ss-1)->currentMove != MOVE_NULL)
|
||||||
{
|
ss->staticEval = eval = evaluate(pos);
|
||||||
int bonus = -(ss-1)->statScore / 512;
|
|
||||||
|
|
||||||
ss->staticEval = eval = evaluate(pos) + bonus;
|
|
||||||
}
|
|
||||||
else
|
else
|
||||||
ss->staticEval = eval = -(ss-1)->staticEval + 2 * Tempo;
|
ss->staticEval = eval = -(ss-1)->staticEval + 2 * Tempo;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user