Skip to content

Commit e0113c4

Browse files
authored
Update movepick.cpp
1 parent 87018d5 commit e0113c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

movepick.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
#include "eval.h"
33
#include <position.h>
44
using namespace chess;
5-
namespace engine {
5+
namespace engine::movepick {
66
Value historyHeuristic[SQUARE_NB][SQUARE_NB]{};
77
Move killerMoves[MAX_PLY][2];
8-
void movepick::orderMoves(chess::Board & board, chess::Movelist & moves, chess::Move ttMove, int ply)
8+
void orderMoves(chess::Board & board, chess::Movelist & moves, chess::Move ttMove, int ply)
99
{
1010
std::vector<std::pair<chess::Move, Value>> scoredMoves;
1111
scoredMoves.reserve(moves.size());

0 commit comments

Comments
 (0)