Helper function to create a simple hand lookup table
| 10 | |
| 11 | // Helper function to create a simple hand lookup table |
| 12 | static void CreateBasicHandLookup(int handLookup[15][15]) { |
| 13 | for (int i = 0; i < 15; ++i) { |
| 14 | for (int j = 0; j < 15; ++j) { |
| 15 | handLookup[i][j] = (i + j) % 4; // Simple pattern |
| 16 | } |
| 17 | } |
| 18 | } |
| 19 | |
| 20 | // Helper function to create test aggregate target |
| 21 | static void CreateTestAggrTarget(unsigned short aggrTarget[DDS_SUITS]) { |