View | Details | Raw Unified | Return to bug 41959
Collapse All | Expand All

(-)a/C4/HoldsQueue.pm (-2 / +1 lines)
Lines 479-485 sub _allocateWithTransportCostMatrix { Link Here
479
479
480
RETRY:
480
RETRY:
481
    while (1) {
481
    while (1) {
482
        return [] if $num_agents == 0 || $num_tasks == 0;
482
        return [] if $num_agents == 0 || $num_tasks + scalar(@remaining) == 0;
483
483
484
        if ( $num_tasks < $num_agents && @remaining ) {
484
        if ( $num_tasks < $num_agents && @remaining ) {
485
485
486
- 

Return to bug 41959