Rename pieces_of_color() in pieces()

To be uniform with other overloads.

No functional change.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
Marco Costalba
2011-06-28 15:36:39 +02:00
parent 01a191936e
commit e5077dc11e
5 changed files with 30 additions and 30 deletions

View File

@@ -1524,7 +1524,7 @@ split_point_start: // At split points actual search starts from here
newAtt = pos.attacks_from(pc, to, occ);
// Rule 1. Checks which give opponent's king at most one escape square are dangerous
b = kingAtt & ~pos.pieces_of_color(them) & ~newAtt & ~(1ULL << to);
b = kingAtt & ~pos.pieces(them) & ~newAtt & ~(1ULL << to);
if (!(b && (b & (b - 1))))
return true;
@@ -1535,7 +1535,7 @@ split_point_start: // At split points actual search starts from here
return true;
// Rule 3. Creating new double threats with checks
b = pos.pieces_of_color(them) & newAtt & ~oldAtt & ~(1ULL << ksq);
b = pos.pieces(them) & newAtt & ~oldAtt & ~(1ULL << ksq);
while (b)
{