You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In many implementations the pruning condition is if connection.arrivalTime > earliestArrivalTime then break loop
This is incorrect since we can't make assumptions on arrival times.
The correct pruning condition is if connection.departureTime >= earliestArrivalTime then break loop
In many implementations the pruning condition is
if connection.arrivalTime > earliestArrivalTime then break loop
This is incorrect since we can't make assumptions on arrival times.
The correct pruning condition is
if connection.departureTime >= earliestArrivalTime then break loop
Pull request that addresses the issue: #32
The text was updated successfully, but these errors were encountered: