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

Micro optimization of update_history()

Remove an useless comparison.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
Marco Costalba 2008-11-10 13:56:49 +01:00
parent e86468cc63
commit cdf1f23bc5

View file

@ -2174,8 +2174,11 @@ namespace {
H.success(pos.piece_on(move_from(m)), m, depth); H.success(pos.piece_on(move_from(m)), m, depth);
for (int i = 0; i < moveCount - 1; i++) for (int i = 0; i < moveCount - 1; i++)
if (ok_to_history(pos, movesSearched[i]) && m != movesSearched[i]) {
assert(m != movesSearched[i]);
if (ok_to_history(pos, movesSearched[i]))
H.failure(pos.piece_on(move_from(movesSearched[i])), movesSearched[i]); H.failure(pos.piece_on(move_from(movesSearched[i])), movesSearched[i]);
}
} }
// fail_high_ply_1() checks if some thread is currently resolving a fail // fail_high_ply_1() checks if some thread is currently resolving a fail