MCPcopy Create free account
hub / github.com/dds-bridge/dds / SetBoardTime

Method SetBoardTime

library/src/system/scheduler.cpp:1000–1007  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

998
999
1000void Scheduler::SetBoardTime(int boardIndex, int timeMs)
1001{
1002 if (boardIndex < 0 || boardIndex >= MAXNOOFBOARDS) return;
1003 // store in the hand time field; this is a lightweight fallback
1004 // for when DDS_SCHEDULER isn't enabled. No locking required for
1005 // single-writer per-board usage pattern from the solver threads.
1006 hands[boardIndex].time = timeMs;
1007}
1008
1009
1010int Scheduler::PredictedTime(

Callers 1

solve_single_commonFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected