* @brief Evaluation result for a position. * * Contains the number of tricks that can be won and which specific * card ranks can win in each suit. */
| 133 | * card ranks can win in each suit. |
| 134 | */ |
| 135 | struct EvalType |
| 136 | { |
| 137 | int tricks; ///< Number of tricks that can be won from this position |
| 138 | unsigned short int win_ranks[DDS_SUITS]; ///< Bitmask of winning ranks in each suit |
| 139 | }; |
| 140 | |
| 141 | /** |
| 142 | * @brief Simple card representation. |
nothing calls this directly
no outgoing calls
no test coverage detected