]> git.sesse.net Git - stockfish/blobdiff - src/position.h
Simplify SEE
[stockfish] / src / position.h
index 4e79a8fa33b878bfba50f02230f6b03aab79e087..b7a33bfada00a2202236802c4093f03f8d923dde 100644 (file)
@@ -243,7 +243,6 @@ public:
   // Static exchange evaluation
   int see(Square from, Square to) const;
   int see(Move m) const;
   // Static exchange evaluation
   int see(Square from, Square to) const;
   int see(Move m) const;
-  int see(Square to) const;
   int see_sign(Move m) const;
 
   // Accessing hash keys
   int see_sign(Move m) const;
 
   // Accessing hash keys
@@ -348,6 +347,7 @@ private:
   static Key zobSideToMove;
   static Score PieceSquareTable[16][64];
   static Key zobExclusion;
   static Key zobSideToMove;
   static Score PieceSquareTable[16][64];
   static Key zobExclusion;
+  static const Value seeValues[8];
 };
 
 
 };