standard constant

Board const standard

Standard chess starting position.

Implementation

static const standard = Board(
  occupied: SquareSet(0xffff00000000ffff),
  promoted: SquareSet.empty,
  white: SquareSet(0xffff),
  black: SquareSet(0xffff000000000000),
  pawns: SquareSet(0x00ff00000000ff00),
  knights: SquareSet(0x4200000000000042),
  bishops: SquareSet(0x2400000000000024),
  rooks: SquareSet.corners,
  queens: SquareSet(0x0800000000000008),
  kings: SquareSet(0x1000000000000010),
);