* @brief Extended card representation with sequence information. * * Like Card but includes sequence information for tracking * equivalent cards during move generation. */
| 156 | * equivalent cards during move generation. |
| 157 | */ |
| 158 | struct ExtCard |
| 159 | { |
| 160 | int suit; ///< Suit of the card (0-3: spades, hearts, diamonds, clubs) |
| 161 | int rank; ///< Rank of the card (2-14: 2 through Ace) |
| 162 | int sequence; ///< Sequence identifier for equivalent cards |
| 163 | }; |
| 164 | |
| 165 | /** |
| 166 | * @brief Absolute rank with holding hand. |
nothing calls this directly
no outgoing calls
no test coverage detected