Changeset 4206 for trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/Alba/Manipulators
- Timestamp:
- 08/13/10 10:28:15 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/Alba/Manipulators
- Files:
-
- 6 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/Alba/Manipulators/AlbaManipulator.cs
r4204 r4206 28 28 29 29 namespace HeuristicLab.Problems.VehicleRouting.Encodings.Alba { 30 [Item("AlbaManipulator", "An operator which manipulates a n AlbaVRP representation.")]30 [Item("AlbaManipulator", "An operator which manipulates a VRP representation.")] 31 31 [StorableClass] 32 32 public abstract class AlbaManipulator : VRPManipulator, IStochasticOperator { -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/Alba/Manipulators/CustomerInsertionManipulator.cs
r4204 r4206 27 27 28 28 namespace HeuristicLab.Problems.VehicleRouting.Encodings.Alba { 29 [Item("CustomerInsertionManipu altor", "An operator which manipulates an Alba VRP representation by inserting a customer in another place. It is implemented as described in Alba, E. and Dorronsoro, B. (2004). Solving the Vehicle Routing Problem by Using Cellular Genetic Algorithms.")]29 [Item("CustomerInsertionManipulator", "An operator which manipulates a VRP representation by inserting a customer in another place. It is implemented as described in Alba, E. and Dorronsoro, B. (2004). Solving the Vehicle Routing Problem by Using Cellular Genetic Algorithms.")] 30 30 [StorableClass] 31 public sealed class CustomerInsertionManipu altor : AlbaManipulator {31 public sealed class CustomerInsertionManipulator : AlbaManipulator { 32 32 [StorableConstructor] 33 private CustomerInsertionManipu altor(bool deserializing) : base(deserializing) { }33 private CustomerInsertionManipulator(bool deserializing) : base(deserializing) { } 34 34 35 public CustomerInsertionManipu altor()35 public CustomerInsertionManipulator() 36 36 : base() { 37 37 } -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/Alba/Manipulators/CustomerInversionManipulator.cs
r4204 r4206 28 28 29 29 namespace HeuristicLab.Problems.VehicleRouting.Encodings.Alba { 30 [Item("CustomerInversionManipu altor", "An operator which manipulates an Alba VRP representation by inverting the order the customers are visited. It is implemented as described in Alba, E. and Dorronsoro, B. (2004). Solving the Vehicle Routing Problem by Using Cellular Genetic Algorithms.")]30 [Item("CustomerInversionManipulator", "An operator which manipulates a VRP representation by inverting the order the customers are visited. It is implemented as described in Alba, E. and Dorronsoro, B. (2004). Solving the Vehicle Routing Problem by Using Cellular Genetic Algorithms.")] 31 31 [StorableClass] 32 public sealed class CustomerInversionManipu altor : AlbaManipulator {32 public sealed class CustomerInversionManipulator : AlbaManipulator { 33 33 [StorableConstructor] 34 private CustomerInversionManipu altor(bool deserializing) : base(deserializing) { }34 private CustomerInversionManipulator(bool deserializing) : base(deserializing) { } 35 35 36 public CustomerInversionManipu altor()36 public CustomerInversionManipulator() 37 37 : base() { 38 38 } -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/Alba/Manipulators/CustomerSwapManipulator.cs
r4204 r4206 27 27 28 28 namespace HeuristicLab.Problems.VehicleRouting.Encodings.Alba { 29 [Item("CustomerSwapManipu altor", "An operator which manipulates an Alba VRP representation by swapping two customers. It is implemented as described in Alba, E. and Dorronsoro, B. (2004). Solving the Vehicle Routing Problem by Using Cellular Genetic Algorithms.")]29 [Item("CustomerSwapManipulator", "An operator which manipulates a VRP representation by swapping two customers. It is implemented as described in Alba, E. and Dorronsoro, B. (2004). Solving the Vehicle Routing Problem by Using Cellular Genetic Algorithms.")] 30 30 [StorableClass] 31 public sealed class CustomerSwapManipu altor : AlbaManipulator {31 public sealed class CustomerSwapManipulator : AlbaManipulator { 32 32 [StorableConstructor] 33 private CustomerSwapManipu altor(bool deserializing) : base(deserializing) { }33 private CustomerSwapManipulator(bool deserializing) : base(deserializing) { } 34 34 35 public CustomerSwapManipu altor()35 public CustomerSwapManipulator() 36 36 : base() { 37 37 } -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/Alba/Manipulators/IntraRouteInversionManipulator.cs
r4204 r4206 29 29 30 30 namespace HeuristicLab.Problems.VehicleRouting.Encodings.Alba { 31 [Item(" SimpleLocalSearchManipulator", "An operator which applies the SLS operation to an Alba VRP representation.It is implemented as described in Alba, E. and Dorronsoro, B. (2004). Solving the Vehicle Routing Problem by Using Cellular Genetic Algorithms.")]31 [Item("IntraRouteInversionManipulator", "An operator which applies the SLS operation to a VRP representation. It is implemented as described in Alba, E. and Dorronsoro, B. (2004). Solving the Vehicle Routing Problem by Using Cellular Genetic Algorithms.")] 32 32 [StorableClass] 33 public sealed class SimpleLocalSearchManipulator : AlbaManipulator {33 public sealed class IntraRouteInversionManipulator : AlbaManipulator { 34 34 [StorableConstructor] 35 private SimpleLocalSearchManipulator(bool deserializing) : base(deserializing) { }35 private IntraRouteInversionManipulator(bool deserializing) : base(deserializing) { } 36 36 37 public SimpleLocalSearchManipulator()37 public IntraRouteInversionManipulator() 38 38 : base() { 39 39 } -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/Alba/Manipulators/LambdaInterchangeManipulator.cs
r4204 r4206 28 28 29 29 namespace HeuristicLab.Problems.VehicleRouting.Encodings.Alba { 30 [Item("LambdaInterchangeManipulator", "An operator which applies the lambda interchange operation to a n Alba VRP representation.It is implemented as described in Alba, E. and Dorronsoro, B. (2004). Solving the Vehicle Routing Problem by Using Cellular Genetic Algorithms.")]30 [Item("LambdaInterchangeManipulator", "An operator which applies the lambda interchange operation to a VRP representation. It is implemented as described in Alba, E. and Dorronsoro, B. (2004). Solving the Vehicle Routing Problem by Using Cellular Genetic Algorithms.")] 31 31 [StorableClass] 32 32 public sealed class LambdaInterchangeManipulator : AlbaManipulator { -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/Alba/Manipulators/PermutationManipulator.cs
r4204 r4206 27 27 28 28 namespace HeuristicLab.Problems.VehicleRouting.Encodings.Alba { 29 [Item("PermutationManipulator", "An operator which manipulates a n AlbaVRP representation by using a standard permutation manipulator.")]29 [Item("PermutationManipulator", "An operator which manipulates a VRP representation by using a standard permutation manipulator.")] 30 30 [StorableClass] 31 31 public sealed class PermutationManipualtor : AlbaManipulator {
Note: See TracChangeset
for help on using the changeset viewer.