X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmove.h;h=3d97799741667d73c2009a65265f93fe503e9fd2;hp=42d3bbe9750d31e55993911d6c72f704d255d12f;hb=7f519a246327e164056bbd3e77ed5a672618094d;hpb=b21a5e2f0638a55daeaa98ba95afc6c016ea0b6e diff --git a/src/move.h b/src/move.h index 42d3bbe9..3d977997 100644 --- a/src/move.h +++ b/src/move.h @@ -55,7 +55,7 @@ inline bool operator<(const MoveStack& f, const MoveStack& s) { return f.score < // An helper insertion sort implementation, works with pointers and iterators template -inline void insertion_sort(K firstMove, K lastMove) +inline void sort(K firstMove, K lastMove) { T value; K cur, p, d; @@ -74,61 +74,6 @@ inline void insertion_sort(K firstMove, K lastMove) } } -// Our dedicated sort in range [firstMove, lastMove), first splits -// positive scores from ramining then order seaprately the two sets. -template -inline void sort_moves(T* firstMove, T* lastMove, T** lastPositive) -{ - T tmp; - T *p, *d; - - d = lastMove; - p = firstMove - 1; - - d->score = -1; // right guard - - // Split positives vs non-positives - do { - while ((++p)->score > 0) {} - - if (p != d) - { - while (--d != p && d->score <= 0) {} - - tmp = *p; - *p = *d; - *d = tmp; - } - - } while (p != d); - - // Sort just positive scored moves, remaining only when we get there - insertion_sort(firstMove, p); - *lastPositive = p; -} - -// Picks up the best move in range [curMove, lastMove), one per cycle. -// It is faster then sorting all the moves in advance when moves are few, -// as normally are the possible captures. Note that is not a stable alghoritm. -template -inline T pick_best(T* curMove, T* lastMove) -{ - T bestMove, tmp; - - bestMove = *curMove; - while (++curMove != lastMove) - { - if (bestMove < *curMove) - { - tmp = *curMove; - *curMove = bestMove; - bestMove = tmp; - } - } - return bestMove; -} - - inline Square move_from(Move m) { return Square((m >> 6) & 0x3F); } @@ -153,14 +98,6 @@ inline int move_is_castle(Move m) { return (m & (3 << 14)) == (3 << 14); } -inline bool move_is_short_castle(Move m) { - return move_is_castle(m) && (move_to(m) > move_from(m)); -} - -inline bool move_is_long_castle(Move m) { - return move_is_castle(m) && (move_to(m) < move_from(m)); -} - inline PieceType promotion_piece_type(Move m) { return PieceType(((m >> 12) & 3) + 2); } @@ -170,7 +107,7 @@ inline Move make_move(Square from, Square to) { } inline Move make_promotion_move(Square from, Square to, PieceType promotion) { - return Move(to | (from << 6) | ((promotion - 2) << 12) | (1 << 14)); + return Move(to | (from << 6) | (1 << 14) | ((promotion - 2) << 12)) ; } inline Move make_ep_move(Square from, Square to) {