- Timestamp:
- 09/01/14 13:36:29 (10 years ago)
- Location:
- branches/HeuristicLab.Problems.Orienteering
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Problems.Orienteering/HeuristicLab.Problems.Instances.Orienteering/3.3/SchildeInstanceProvider.cs
r11319 r11323 38 38 } 39 39 public override string ReferencePublication { 40 get { return "Metaheuristics for the bi-objective orienteering problem (Michael Schilde, Karl F. Doerner, Richard F. Hartl, Guenter Kiechle)"; } 40 get { 41 return @"Michael Schilde, Karl F. Doerner, Richard F. Hartl, Guenter Kiechle. 2009. 42 Metaheuristics for the bi-objective orienteering problem. 43 Swarm Intelligence, Volume 3, Issue 3, pp 179-201."; 44 } 41 45 } 42 46 public override Uri WebLink { -
branches/HeuristicLab.Problems.Orienteering/HeuristicLab.Problems.Orienteering/3.3/Improvers/OrienteeringLocalImprovementOperator.cs
r11320 r11323 129 129 var tour = IntegerVectorParameter.ActualValue.ToList(); 130 130 131 double tourLength = distances.CalculateTourLength(tour, pointVisitingCosts);131 double tourLength = 0; 132 132 double tourScore = tour.Sum(point => scores[point]); 133 133 … … 139 139 while (optimizationDone && localIterations.Value < maxIterations) { 140 140 optimizationDone = false; 141 142 if (localIterations.Value == 0) 143 tourLength = distances.CalculateTourLength(tour, pointVisitingCosts); 141 144 142 145 // Try to shorten the path
Note: See TracChangeset
for help on using the changeset viewer.