Code: Select all
if ( v == 1
&& pos_checkers()
&& generate_legal(pos, (pos->st-1)->endMoves) == (pos->st-1)->endMoves)
best = 1;
--Jon
Moderators: hgm, Rebel, chrisw
Code: Select all
if ( v == 1
&& pos_checkers()
&& generate_legal(pos, (pos->st-1)->endMoves) == (pos->st-1)->endMoves)
best = 1;
I believe that is used to filter known worse moves at root given WDL information.I am not quite clear what the purpose of this is.
Cfish and Stockfish rank moves if only WDL is available but also if WDL+DTZ is available. The WDL+DTZ ranking is obviously more accurate.noobpwnftw wrote: ↑Thu Apr 11, 2019 8:39 pmI believe that is used to filter known worse moves at root given WDL information.I am not quite clear what the purpose of this is.
I appreciate the effort, but there is no specification for the file format there, especially not for 7-man tablebases as the probing code given on that page does not support them.