1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-04-29 16:23:09 +00:00

Document one test result

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
Joona Kiiski 2010-03-04 08:52:35 +02:00 committed by Marco Costalba
parent 8abdb131c8
commit aeb664e0ea

View file

@ -1339,7 +1339,9 @@ namespace {
Value rbeta = beta - razor_margin(depth);
Value v = qsearch(pos, ss, rbeta-1, rbeta, Depth(0), ply, threadID);
if (v < rbeta)
return v; //FIXME: Logically should be: return (v + razor_margin(depth));
// Logically we should return (v + razor_margin(depth)), but
// surprisingly this did slightly weaker in tests.
return v;
}
// Step 7. Static null move pruning