| 95 | } |
| 96 | |
| 97 | void MockHandGenerator::PrintDistribution(const int hand_dist[DDS_HANDS]) const { |
| 98 | std::cout << "Hand distribution: ["; |
| 99 | for (int hand = 0; hand < DDS_HANDS; hand++) { |
| 100 | if (hand > 0) std::cout << ", "; |
| 101 | std::cout << hand_dist[hand]; |
| 102 | } |
| 103 | std::cout << "]\n"; |
| 104 | } |
| 105 | |
| 106 | void MockHandGenerator::EnsureValidTotalCards(int hand_dist[DDS_HANDS], int targetTotal) |
| 107 | { |
nothing calls this directly
no outgoing calls
no test coverage detected