| 31 | |
| 32 | |
| 33 | Scheduler::Scheduler() |
| 34 | { |
| 35 | numThreads = 0; |
| 36 | numHands = 0; |
| 37 | |
| 38 | Scheduler::InitHighCards(); |
| 39 | |
| 40 | #ifdef DDS_SCHEDULER |
| 41 | Scheduler::InitTimes(); |
| 42 | for (int i = 0; i < 10000; i++) |
| 43 | { |
| 44 | timeHist[i] = 0; |
| 45 | timeHistNT[i] = 0; |
| 46 | timeHistSuit[i] = 0; |
| 47 | } |
| 48 | #endif |
| 49 | |
| 50 | Scheduler::RegisterThreads(1); |
| 51 | } |
| 52 | |
| 53 | |
| 54 | void Scheduler::InitHighCards() |
nothing calls this directly
no outgoing calls
no test coverage detected