User Tools

Site Tools


chess:programming:move_generation

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
chess:programming:move_generation [2021/10/30 21:43] peterchess:programming:move_generation [2021/11/15 16:18] (current) peter
Line 1: Line 1:
 ====== Chess - Programming - Move Generation ====== ====== Chess - Programming - Move Generation ======
  
-<code cpp+<code> 
-// Move bits +//  bit | 63| 62| 61| 60| 59| 58| 57| 56| 55| 54| 53| 52| 51| 50| 49| 48| 47| 46| 45| 44| 43| 42| 41| 40| 39| 38| 37| 36| 35| 34| 33| 32| 31| 30| 29| 28| 27| 26| 25| 24| 23| 22| 21| 20| 19| 18| 17| 16| 15| 14| 13| 12| 11| 10| 9876543210| 
-// Higher priority moves have higher ulong value. +//      |UGM|VGM|GM |UBM|VBM|BM |                                       |Bm |Nm |Rm |Hm |PV |Km |F  |S  |M  |DC |C  |PN |PB |PR |PQ |PRO|CQ |CK |Cm |EP |PC |NC |BC |RC |QC |KC |Ca |QM |DP |P  |N  |B  |R  |Q  |K  |WB |From               |To               | 
-// 6 6 6 6 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 + 
-// 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 +// bit   0- 5  : To      : Destination square (from 0 to 63). 
-// B|CapV   |CapA   |Promo  |Kil|History                                                  |C|K|E|D|P|Q|From         |To            +// bit   6-11  : From    : Origin square (from 0 to 63). 
-// B =     Best Move +// bit     12  : WB      : Color doing the move. 0=WHITE 1=BLACK. 
-// CapV =  Capture Victim +// bit     13  : K       : King Move. 
-// CapA =  Capture Attacker (inverted+// bit     14  : Q       : Queen Move. 
-// Promo Promoted Piece +// bit     15  : R       : Rook Move. 
-// Kil   Killer Move +// bit     16  : B       : Bishop Move. 
-// C =     Castling +// Bit     17  : N       : Knight Move. 
-// K =     King Move +// Bit     18  : P       : Pawn Move. 
-// E =     En Passant Capture +// Bit     19  : DP      : Double Pawn Move. 
-// D =     Double Pawn Move +// Bit     20  : QM      : Quite Move. (Not capture, castling, pawn promotion, or check). 
-// P =     Pawn Move +// Bit     21  : Ca      : Capture. (Including En-Passant Capture). 
-// Q =     Quiet (not capture, castling, or pawn promotion) +// Bit     22  : KC      : King Capture. 
-// From =  From (needs one extra bit for illegal square+// Bit     23  : QC      : Queen Capture. 
-// To =    To (needs one extra bit for illegal square)+// Bit     24  : RC      : Rook Capture. 
 +// Bit     25  : BC      : Bishop Capture. 
 +// Bit     26  : NC      : Knight Capture. 
 +// Bit     27  : PC      : Pawn Capture. 
 +// Bit     28  : EP      : En-Passant Capture. 
 +// Bit     29  : Cm      : Castling Move. 
 +// Bit     30  : CK      : Castling Move. King Side. 
 +// Bit     31  : CQ      : Castling Move. Queen Side. 
 +// Bit     32  : PRO     : Promotion Move. 
 +// Bit     33  : PQ      : Promotion Move. Queen. 
 +// Bit     34  : PR      : Promotion Move. Rook. 
 +// Bit     35  : PB      : Promotion Move. Bishop. 
 +// Bit     36  : PN      : Promotion Move. Knight. 
 +// Bit     37  : C       : Checking Move. 
 +// Bit     38  : DC      : Double Checking Move. 
 +// Bit     39  : M       : Mating Move. 
 +// Bit     40  : S       : Stalemating Move. 
 +// Bit     41  : F       : Forced Move. Only 1 Move possible. 
 +// Bit     42  : Km      : Killer Move.  A quiet move which caused a beta-cutoff in a sibling Cut-node. 
 +// Bit     43  : PV      : PV Move.  Part of the principal variation and therefore a best move found in the previous iteration. 
 +// Bit     44  : Hm      : Hash Move.  A move probed from the transposition table. 
 +// Bit     45  : Rm      : Refutation Move.  A move which fails high at Cut-nodes. 
 +// Bit     46  : Nm      : Null Move. 
 +// Bit     47  : Bm      : Book Move. 
 + 
 +// Bit     58  : BM      : Bad Move.  ?!  When score decreases with 0.50. 
 +// Bit     59  : VBM     : Very Bad Move.  ? when score decreases with 1.00 or more. 
 +// Bit     60  : UBM     : Ultra Bad Move.  ?? - when score decreases with 2.00 or more. 
 +// Bit     61  : GM      : Good Move.  !? When score increases with 0.50. 
 +// Bit     62  : VGM     : Very Good Move.  ! - when score increases with 1.00 or more. 
 +// Bit     63  : UGM     : Ultra Good Move.  !! - when score increases with 2.00 or more.
 </code> </code>
  
chess/programming/move_generation.1635630225.txt.gz · Last modified: 2021/10/30 21:43 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki