]> git.sesse.net Git - stockfish/blobdiff - src/movepick.cpp
Use only history to score non captures
[stockfish] / src / movepick.cpp
index c6c25d7b42a53eff8daf1e19634367a25d37d310..fa30de554b59de4864821326c8b5765d83b7a22f 100644 (file)
@@ -216,18 +216,15 @@ void MovePicker::score_captures() {
 }
 
 void MovePicker::score_noncaptures() {
-  // Score by history and max gain for the move.
+
   Move m;
-  Piece piece;
-  Square from, to;
+  Square from;
 
   for (MoveStack* cur = moves; cur != lastMove; cur++)
   {
       m = cur->move;
       from = move_from(m);
-      to = move_to(m);
-      piece = pos.piece_on(from);
-      cur->score = H.value(piece, to) + H.gain(piece, to);
+      cur->score = H.value(pos.piece_on(from), move_to(m));
   }
 }