id summary reporter owner description type status priority milestone component version resolution keywords cc 2191 Bug in IterativeInsertionCreator abeham abeham "The bug was reported on the [https://groups.google.com/forum/#!topic/heuristiclab/qtEchJmgfWQ mailinglist]. There is a small bug in HeuristicLab.Problems.VehicleRouting\3.4\Encodings\Potvin\Creators\IterativeInsertionCreator.cs in `public static PotvinEncoding CreateSolution()`: {{{#!csharp int stopIdx = 0; if (currentTour.Stops.Count > 0) result.FindBestInsertionPlace(currentTour, customers[index]); currentTour.Stops.Insert(stopIdx, customers[index]); }}} Should be: {{{#!csharp int stopIdx = 0; if (currentTour.Stops.Count > 0) stopIdx = result.FindBestInsertionPlace(currentTour, customers[index]); currentTour.Stops.Insert(stopIdx, customers[index]); }}}" defect closed medium HeuristicLab 3.3.10 Problems.VehicleRouting 3.3.9 done