- Timestamp:
- 07/08/16 14:40:02 (8 years ago)
- Location:
- branches/crossvalidation-2434
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/crossvalidation-2434
- Property svn:mergeinfo changed
-
branches/crossvalidation-2434/HeuristicLab.Problems.VehicleRouting
- Property svn:mergeinfo changed
/stable/HeuristicLab.Problems.VehicleRouting merged: 13316 /trunk/sources/HeuristicLab.Problems.VehicleRouting (added) merged: 13173,13321,13397,13420
- Property svn:mergeinfo changed
-
branches/crossvalidation-2434/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/PickupDelivery/PDExchange/PotvinPDExchangeSingleMoveGenerator.cs
r12012 r14029 70 70 int oldTourIndex = individual.Tours.IndexOf(oldTour); 71 71 72 int max = individual.Tours.Count; 73 if (individual.Tours.Count < problemInstance.Vehicles.Value) 74 max = max - 1; 72 int max = individual.Tours.Count - 1; 75 73 76 74 int newTourIndex = rand.Next(max); -
branches/crossvalidation-2434/HeuristicLab.Problems.VehicleRouting/3.4/Plugin.cs.frame
r12753 r14029 26 26 /// Plugin class for HeuristicLab.Problems.VehicleRouting plugin 27 27 /// </summary> 28 [Plugin("HeuristicLab.Problems.VehicleRouting", "3.4. 5.$WCREV$")]28 [Plugin("HeuristicLab.Problems.VehicleRouting", "3.4.6.$WCREV$")] 29 29 [PluginFile("HeuristicLab.Problems.VehicleRouting-3.4.dll", PluginFileType.Assembly)] 30 30 [PluginDependency("HeuristicLab.Analysis", "3.3")] -
branches/crossvalidation-2434/HeuristicLab.Problems.VehicleRouting/3.4/Properties/AssemblyInfo.cs.frame
r12753 r14029 53 53 // by using the '*' as shown below: 54 54 [assembly: AssemblyVersion("3.4.0.0")] 55 [assembly: AssemblyFileVersion("3.4. 5.$WCREV$")]55 [assembly: AssemblyFileVersion("3.4.6.$WCREV$")] -
branches/crossvalidation-2434/HeuristicLab.Problems.VehicleRouting/3.4/VehicleRoutingProblem.cs
r12504 r14029 41 41 42 42 namespace HeuristicLab.Problems.VehicleRouting { 43 [Item("Vehicle Routing Problem ", "Represents a Vehicle Routing Problem.")]43 [Item("Vehicle Routing Problem (VRP)", "Represents a Vehicle Routing Problem.")] 44 44 [Creatable(CreatableAttribute.Categories.CombinatorialProblems, Priority = 110)] 45 45 [StorableClass]
Note: See TracChangeset
for help on using the changeset viewer.