| 434 | |
| 435 | |
| 436 | bool Scheduler::SameHand( |
| 437 | const int hno1, |
| 438 | const int hno2) const |
| 439 | { |
| 440 | for (int h = 0; h < DDS_HANDS; h++) |
| 441 | for (int s = 0; s < DDS_SUITS; s++) |
| 442 | if (hands[hno1].remainCards[h][s] != hands[hno2].remainCards[h][s]) |
| 443 | return false; |
| 444 | |
| 445 | return true; |
| 446 | } |
| 447 | |
| 448 | |
| 449 | // These are specific times from a 12-core PC. The hope is |
nothing calls this directly
no outgoing calls
no test coverage detected