mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 08:43:09 +00:00
Document one test result
Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
parent
8abdb131c8
commit
aeb664e0ea
1 changed files with 3 additions and 1 deletions
|
@ -1339,7 +1339,9 @@ namespace {
|
||||||
Value rbeta = beta - razor_margin(depth);
|
Value rbeta = beta - razor_margin(depth);
|
||||||
Value v = qsearch(pos, ss, rbeta-1, rbeta, Depth(0), ply, threadID);
|
Value v = qsearch(pos, ss, rbeta-1, rbeta, Depth(0), ply, threadID);
|
||||||
if (v < rbeta)
|
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
|
// Step 7. Static null move pruning
|
||||||
|
|
Loading…
Add table
Reference in a new issue