]> git.sesse.net Git - stockfish/blobdiff - src/movegen.cpp
Retire empty_squares()
[stockfish] / src / movegen.cpp
index e2cc7b99d513265f9199be3a0d7ad8fab5a85533..612a87e577faec13cf342d1522a4b9abea107146 100644 (file)
@@ -155,7 +155,7 @@ namespace {
     // Single and double pawn pushes, no promotions
     if (Type != MV_CAPTURE)
     {
-        emptySquares = (Type == MV_QUIET ? target : pos.empty_squares());
+        emptySquares = (Type == MV_QUIET ? target : ~pos.occupied_squares());
 
         b1 = move_pawns<UP>(pawnsNotOn7)   & emptySquares;
         b2 = move_pawns<UP>(b1 & TRank3BB) & emptySquares;
@@ -193,7 +193,7 @@ namespace {
     if (pawnsOn7 && (Type != MV_EVASION || (target & TRank8BB)))
     {
         if (Type == MV_CAPTURE)
-            emptySquares = pos.empty_squares();
+            emptySquares = ~pos.occupied_squares();
 
         if (Type == MV_EVASION)
             emptySquares &= target;
@@ -246,7 +246,7 @@ namespace {
 
     if (*pl != SQ_NONE)
     {
-        target = ci.checkSq[Pt] & pos.empty_squares(); // Non capture checks only
+        target = ci.checkSq[Pt] & ~pos.occupied_squares(); // Non capture checks only
 
         do {
             from = *pl;
@@ -321,10 +321,10 @@ MoveStack* generate(const Position& pos, MoveStack* mlist) {
       target = pos.pieces(~us);
 
   else if (Type == MV_QUIET)
-      target = pos.empty_squares();
+      target = ~pos.occupied_squares();
 
   else if (Type == MV_NON_EVASION)
-      target = pos.pieces(~us) | pos.empty_squares();
+      target = pos.pieces(~us) | ~pos.occupied_squares();
 
   mlist = (us == WHITE ? generate_pawn_moves<WHITE, Type>(pos, mlist, target)
                        : generate_pawn_moves<BLACK, Type>(pos, mlist, target));
@@ -369,7 +369,7 @@ MoveStack* generate<MV_QUIET_CHECK>(const Position& pos, MoveStack* mlist) {
      if (pt == PAWN)
          continue; // Will be generated togheter with direct checks
 
-     Bitboard b = pos.attacks_from(Piece(pt), from) & pos.empty_squares();
+     Bitboard b = pos.attacks_from(Piece(pt), from) & ~pos.occupied_squares();
 
      if (pt == KING)
          b &= ~PseudoAttacks[QUEEN][ci.ksq];