mirror of
https://github.com/sockspls/badfish
synced 2025-05-02 01:29:36 +00:00
Fix bogus comment in extract_pv()
Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
parent
da948cc94e
commit
fd2b3df770
1 changed files with 1 additions and 1 deletions
|
@ -231,7 +231,7 @@ void TranspositionTable::extract_pv(const Position& pos, Move pv[], int pvSize)
|
|||
while (pv[ply] != MOVE_NONE)
|
||||
p.do_move(pv[ply++], st);
|
||||
|
||||
// Try to add moves from TT until possible
|
||||
// Try to add moves from TT while possible
|
||||
while ( (tte = retrieve(p.get_key())) != NULL
|
||||
&& tte->move() != MOVE_NONE
|
||||
&& move_is_legal(p, tte->move())
|
||||
|
|
Loading…
Add table
Reference in a new issue