Revert previous patch

It seems a regression at 15+0.05:
ELO: -4.82 +-2.1 (95%) LOS: 0.0%
Total: 40000 W: 7181 L: 7736 D: 25083

bench: 8331357
This commit is contained in:
Marco Costalba
2013-11-17 23:47:18 +01:00
parent 917944e9c5
commit c376ffce0f
3 changed files with 10 additions and 15 deletions

View File

@@ -140,15 +140,6 @@ MovePicker::MovePicker(const Position& p, Move ttm, const HistoryStats& h, Piece
}
/// quiet_moves() returns a pointer to the beginning of moves array. It
/// is used to access already tried quiet moves when updating history.
const ExtMove* MovePicker::quiet_moves() const {
return stage == KILLERS_S1 ? killers
: stage == QUIETS_1_S1 || stage == QUIETS_2_S1 ? moves : NULL;
}
/// score() assign a numerical move ordering score to each move in a move list.
/// The moves with highest scores will be picked first.
template<>