Small codestyle touches

Mostly suggested by Justin (UncombedCoconut), the 0ULL -> 0 conversion
is mine.

No functional change.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
Marco Costalba
2010-10-09 13:05:58 +01:00
parent 9ca4359f36
commit 7733dadfd7
10 changed files with 23 additions and 24 deletions

View File

@@ -75,7 +75,7 @@ MovePicker::MovePicker(const Position& p, Move ttm, Depth d, const History& h,
int searchTT = ttm;
ttMoves[0].move = ttm;
badCaptureThreshold = 0;
badCaptures = moves + 256;
badCaptures = moves + MOVES_MAX;
pinned = p.pinned_pieces(pos.side_to_move());
@@ -151,7 +151,7 @@ void MovePicker::go_next_phase() {
// Bad captures SEE value is already calculated so just pick
// them in order to get SEE move ordering.
curMove = badCaptures;
lastMove = moves + 256;
lastMove = moves + MOVES_MAX;
return;
case PH_EVASIONS: