]> git.sesse.net Git - stockfish/blobdiff - src/position.h
Use double rotate for magic generation
[stockfish] / src / position.h
index 49f89e6c0078764164e13e3bf34ac5d4082f98e2..1a7149070f3c0640ab8b87e56a3f5df14140eec3 100644 (file)
@@ -213,7 +213,6 @@ public:
   // Static exchange evaluation
   int see(Move m) const;
   int see_sign(Move m) const;
-  static int see_value(PieceType pt);
 
   // Accessing hash keys
   Key get_key() const;
@@ -228,7 +227,7 @@ public:
 
   // Game termination checks
   bool is_mate() const;
-  bool is_draw() const;
+  template<bool SkipRepetition> bool is_draw() const;
 
   // Number of plies from starting position
   int startpos_ply_counter() const;
@@ -467,10 +466,6 @@ inline bool Position::square_is_weak(Square s, Color c) const {
   return !(pieces(PAWN, opposite_color(c)) & attack_span_mask(c, s));
 }
 
-inline int Position::see_value(PieceType pt) {
-  return seeValues[pt];
-}
-
 inline Key Position::get_key() const {
   return st->key;
 }