]> git.sesse.net Git - stockfish/commit
Remove useless assignments to currentMove
authorajithcj <achajo@yahoo.co.in>
Sat, 15 Oct 2016 07:29:24 +0000 (07:29 +0000)
committerMarco Costalba <mcostalba@gmail.com>
Tue, 18 Oct 2016 07:00:52 +0000 (09:00 +0200)
commit99f3ad6858889bbc40c016c96c9f7e53a773e49e
treea70d47888f6ee17e3504b63375577924b7f3e304
parente27d3bb884dc17027010c1ea8f7e7d9efb383d4c
Remove useless assignments to currentMove

We reference (ss-1)->currentMove, i.e. we peek
current move of the parent node, so currentMove
should be valid in the main move loop, when we
search() the subtree, but outside of main loop
it is useless.

No functional change.
src/search.cpp