Scheduling mode — controls how concurrent solve() calls interact.
solve()
latest-wins
queue
maxConcurrent
parallel
client.solve()
Scheduling mode — controls how concurrent
solve()calls interact.latest-wins: One in flight at a time. New calls supersede any pending call (in-flight one is aborted). Optimal for slider scrubs / live UIs.queue: FIFO queue. Each solve runs to completion. Concurrency capped bymaxConcurrent. Use for "submit job" flows where every request matters.parallel: No scheduling — calls run concurrently up tomaxConcurrent. Closest to plainclient.solve()but with shared cancel/state.