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
{{ message }}
This repository has been archived by the owner on Sep 3, 2019. It is now read-only.
Class
RouterTSPWrapper
-> MethodeCalculateTSP(Vehicle vehicle, RouterPoint[] points, int first, int last)
The bug is located in line 126. You forgot to pass first and last to the RouterTSP.
Original:
IRoute tspSolution = _routerTSP.CalculateTSP(weights, locations);
Should be:
IRoute tspSolution = _routerTSP.CalculateTSP(weights, locations, first, last);
The text was updated successfully, but these errors were encountered: