- Timestamp:
- 08/31/10 14:03:12 (14 years ago)
- Location:
- branches/VRP/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/GVR
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/GVR/Crossovers/GVRCrossover.cs
r4268 r4346 29 29 30 30 namespace HeuristicLab.Problems.VehicleRouting.Encodings.GVR { 31 [Item("GVRCrossover", "The GVR crossover operation. ")]31 [Item("GVRCrossover", "The GVR crossover operation. It is implemented as described in Pereira, F.B. et al (2002). GVR: a New Genetic Representation for the Vehicle Routing Problem. AICS 2002, LNAI 2464, pp. 95-102.")] 32 32 [StorableClass] 33 33 public sealed class GVRCrossover : VRPCrossover, IStochasticOperator { -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/GVR/Manipulators/GVRDisplacementManipulator.cs
r4231 r4346 28 28 29 29 namespace HeuristicLab.Problems.VehicleRouting.Encodings.GVR { 30 [Item("GVRDisplacementManipulator", "An operator which manipulates a GVR representation by applying a displacement operation. ")]30 [Item("GVRDisplacementManipulator", "An operator which manipulates a GVR representation by applying a displacement operation. It is implemented as described in Pereira, F.B. et al (2002). GVR: a New Genetic Representation for the Vehicle Routing Problem. AICS 2002, LNAI 2464, pp. 95-102.")] 31 31 [StorableClass] 32 32 public sealed class GVRDisplacementManipulator : GVRManipulator { -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/GVR/Manipulators/GVRInsertionManipulator.cs
r4270 r4346 27 27 28 28 namespace HeuristicLab.Problems.VehicleRouting.Encodings.GVR { 29 [Item("GVRInsertionManipulator", "An operator which manipulates a GVR representation by inserting a customer at another location. ")]29 [Item("GVRInsertionManipulator", "An operator which manipulates a GVR representation by inserting a customer at another location. It is implemented as described in Pereira, F.B. et al (2002). GVR: a New Genetic Representation for the Vehicle Routing Problem. AICS 2002, LNAI 2464, pp. 95-102.")] 30 30 [StorableClass] 31 31 public sealed class GVRInsertionManipulator : GVRManipulator { -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/GVR/Manipulators/GVRInversionManipulator.cs
r4230 r4346 27 27 28 28 namespace HeuristicLab.Problems.VehicleRouting.Encodings.GVR { 29 [Item("GVRInversionManipulator", "An operator which manipulates a GVR representation by inverting a subroute. ")]29 [Item("GVRInversionManipulator", "An operator which manipulates a GVR representation by inverting a subroute. It is implemented as described in Pereira, F.B. et al (2002). GVR: a New Genetic Representation for the Vehicle Routing Problem. AICS 2002, LNAI 2464, pp. 95-102.")] 30 30 [StorableClass] 31 31 public sealed class GVRInversionManipulator : GVRManipulator { -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/GVR/Manipulators/GVRSwapManipulator.cs
r4230 r4346 27 27 28 28 namespace HeuristicLab.Problems.VehicleRouting.Encodings.GVR { 29 [Item("GVRSwapManipulator", "An operator which manipulates a GVR representation by swapping two customers. ")]29 [Item("GVRSwapManipulator", "An operator which manipulates a GVR representation by swapping two customers. It is implemented as described in Pereira, F.B. et al (2002). GVR: a New Genetic Representation for the Vehicle Routing Problem. AICS 2002, LNAI 2464, pp. 95-102.")] 30 30 [StorableClass] 31 31 public sealed class GVRSwapManipulator : GVRManipulator {
Note: See TracChangeset
for help on using the changeset viewer.