Home * Chess * Position * Horizontal Mirroring
cheating-cheat-chess-mirror-best-demotivational-posters.jpg

Horizontal Mirroring mirrors all pieces along the vertical axis between the D- and E-File. Applicable if both sides have lost their castling rights, horizontal mirroring should result in equal static evaluation score, but not necessarily equal search result if pieces and squares are traversed in different order. Along with vertical flipping and/or diagonal mirroring, horizontal mirroring is used in pawn-less endgame tablebases to restrict a white king to the 10 squares of the a1-d4-d1 triangle of the board.
Mirroring [1]

Sample Position

Horizontal Mirroring

Original

Horizontal Mirroring
external image 8%20w%20-%20-&size=medium&coord=yes&cap=no&stm=yes&fb=no&theme=classic&color1=E3CEAA&color2=635147&color3=000000

external image 8%20w%20-%20-&size=medium&coord=yes&cap=no&stm=yes&fb=no&theme=classic&color1=E3CEAA&color2=635147&color3=000000
k7/8/NK2B3/8/8/8/8/8 w - -

7k/8/3B2KN/8/8/8/8/8 w - -

Flipping & Rotation

Vertical flipping and horizontal mirroring (or vice versa) results in rotation by 180 degrees.
Vertical Flipping

180° Rotation
external image k7%20w%20-%20-&size=medium&coord=yes&cap=no&stm=yes&fb=no&theme=classic&color1=E3CEAA&color2=635147&color3=000000

external image 7k%20w%20-%20-&size=medium&coord=yes&cap=no&stm=yes&fb=no&theme=classic&color1=E3CEAA&color2=635147&color3=000000
8/8/8/8/8/NK2B3/8/k7 w - -

8/8/8/8/8/3B2KN/8/7k w - -

Mirroring an 8x8 Board

An 8x8 Board with a rank-file mapping needs to perform an exclusive or with 7 (h1 in LERF) to horizontally mirror square coordinates. A pure 8x8 Board may be mirrored that way in C:
int board[64], sq, s;
 
for (sq = 0; sq < 64; sq += ++sq & 4)  {
  s = board[sq];
  board[sq] = board[sq^7];
  board[sq^7] = s;
}

See also


External Links


References

  1. ^ Chess Demotivational Posters & Images

What links here?


Up one Level