1
0
Fork 0

Document one test result

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
sf_2.3.1_base
Joona Kiiski 2010-03-04 08:52:35 +02:00 committed by Marco Costalba
parent 8abdb131c8
commit aeb664e0ea
1 changed files with 3 additions and 1 deletions

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