- Timestamp:
- 05/25/12 11:32:22 (13 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings
- Files:
-
- 36 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Alba/AlbaEncoding.cs
r7543 r7906 109 109 110 110 [StorableConstructor] 111 pr ivateAlbaEncoding(bool serializing)111 protected AlbaEncoding(bool serializing) 112 112 : base(serializing) { 113 113 } -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Alba/Moves/IntraRouteInversion/AlbaIntraRouteInversionMoveMaker.cs
r4752 r7906 41 41 42 42 [StorableConstructor] 43 pr ivateAlbaIntraRouteInversionMoveMaker(bool deserializing) : base(deserializing) { }43 protected AlbaIntraRouteInversionMoveMaker(bool deserializing) : base(deserializing) { } 44 44 45 45 public AlbaIntraRouteInversionMoveMaker() -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Alba/Moves/LambdaInterchange/AlbaLambdaInterchangeMove.cs
r6772 r7906 80 80 } 81 81 82 [StorableConstructor] 83 protected AlbaLambdaInterchangeMove(bool deserializing) : base(deserializing) { } 84 82 85 public override IDeepCloneable Clone(Cloner cloner) { 83 86 return new AlbaLambdaInterchangeMove(this, cloner); -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Alba/Moves/LambdaInterchange/AlbaLambdaInterchangeMoveMaker.cs
r4752 r7906 45 45 46 46 [StorableConstructor] 47 pr ivateAlbaLambdaInterchangeMoveMaker(bool deserializing) : base(deserializing) { }47 protected AlbaLambdaInterchangeMoveMaker(bool deserializing) : base(deserializing) { } 48 48 49 49 public AlbaLambdaInterchangeMoveMaker() -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/GVR/GVREncoding.cs
r6851 r7906 83 83 84 84 [StorableConstructor] 85 pr ivateGVREncoding(bool serializing)85 protected GVREncoding(bool serializing) 86 86 : base(serializing) { 87 87 } -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/Creators/MultiVRPSolutionCreator.cs
r4752 r7906 55 55 56 56 [StorableConstructor] 57 pr ivateMultiVRPSolutionCreator(bool deserializing) : base(deserializing) { }57 protected MultiVRPSolutionCreator(bool deserializing) : base(deserializing) { } 58 58 public MultiVRPSolutionCreator() 59 59 : base() { -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/Moves/MultiVRPMoveOperator/MultiVRPMoveGenerator.cs
r6772 r7906 77 77 78 78 [StorableConstructor] 79 pr ivateMultiVRPMoveGenerator(bool deserializing) : base(deserializing) { }79 protected MultiVRPMoveGenerator(bool deserializing) : base(deserializing) { } 80 80 public MultiVRPMoveGenerator() 81 81 : base() { -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/Moves/MultiVRPMoveOperator/MultiVRPMoveMaker.cs
r5867 r7906 39 39 40 40 [StorableConstructor] 41 pr ivateMultiVRPMoveMaker(bool deserializing) : base(deserializing) { }41 protected MultiVRPMoveMaker(bool deserializing) : base(deserializing) { } 42 42 43 43 public MultiVRPMoveMaker() -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/Moves/MultiVRPMoveOperator/MultiVRPMoveTabuChecker.cs
r6772 r7906 68 68 69 69 [StorableConstructor] 70 pr ivateMultiVRPMoveTabuChecker(bool deserializing) : base(deserializing) { }70 protected MultiVRPMoveTabuChecker(bool deserializing) : base(deserializing) { } 71 71 72 72 public MultiVRPMoveTabuChecker() -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/Moves/MultiVRPMoveOperator/MultiVRPMoveTabuMaker.cs
r6772 r7906 61 61 62 62 [StorableConstructor] 63 pr ivateMultiVRPMoveTabuMaker(bool deserializing) : base(deserializing) { }63 protected MultiVRPMoveTabuMaker(bool deserializing) : base(deserializing) { } 64 64 65 65 public MultiVRPMoveTabuMaker() -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/PermutationEncoding.cs
r7855 r7906 60 60 protected PermutationEncoding(PermutationEncoding original, Cloner cloner) 61 61 : base(original, cloner) { 62 this.ProblemInstance = original.ProblemInstance;63 62 this.readOnly = original.readOnly; 63 64 if (original.ProblemInstance != null && cloner.ClonedObjectRegistered(original.ProblemInstance)) 65 this.ProblemInstance = (IVRPProblemInstance)cloner.Clone(original.ProblemInstance); 66 else 67 this.ProblemInstance = original.ProblemInstance; 64 68 } 65 69 -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/TourEncoding.cs
r7543 r7906 115 115 : base(original, cloner) { 116 116 this.Tours = (ItemList<Tour>)cloner.Clone(original.Tours); 117 this.ProblemInstance = original.ProblemInstance; 117 if (original.ProblemInstance != null && cloner.ClonedObjectRegistered(original.ProblemInstance)) 118 this.ProblemInstance = (IVRPProblemInstance)cloner.Clone(original.ProblemInstance); 119 else 120 this.ProblemInstance = original.ProblemInstance; 118 121 } 119 122 -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/CustomerRelocation/PotvinCustomerRelocationExhaustiveMoveGenerator.cs
r7790 r7906 44 44 } 45 45 46 private PotvinCustomerRelocationExhaustiveMoveGenerator(PotvinCustomerRelocation MoveGenerator original, Cloner cloner)46 private PotvinCustomerRelocationExhaustiveMoveGenerator(PotvinCustomerRelocationExhaustiveMoveGenerator original, Cloner cloner) 47 47 : base(original, cloner) { 48 48 } -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/CustomerRelocation/PotvinCustomerRelocationMove.cs
r6772 r7906 74 74 } 75 75 76 [StorableConstructor] 77 protected PotvinCustomerRelocationMove(bool deserializing) : base(deserializing) { } 78 76 79 #region IVRPMove Members 77 80 -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/CustomerRelocation/PotvinCustomerRelocationMoveMaker.cs
r7790 r7906 52 52 53 53 [StorableConstructor] 54 pr ivatePotvinCustomerRelocationMoveMaker(bool deserializing) : base(deserializing) { }54 protected PotvinCustomerRelocationMoveMaker(bool deserializing) : base(deserializing) { } 55 55 56 56 public PotvinCustomerRelocationMoveMaker() -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/CustomerRelocation/PotvinCustomerRelocationMultiMoveGenerator.cs
r5867 r7906 56 56 } 57 57 58 private PotvinCustomerRelocationMultiMoveGenerator(PotvinCustomerRelocationM oveGenerator original, Cloner cloner)58 private PotvinCustomerRelocationMultiMoveGenerator(PotvinCustomerRelocationMultiMoveGenerator original, Cloner cloner) 59 59 : base(original, cloner) { 60 60 } -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/CustomerRelocation/PotvinCustomerRelocationSingleMoveGenerator.cs
r5867 r7906 60 60 } 61 61 62 private PotvinCustomerRelocationSingleMoveGenerator(PotvinCustomerRelocation MoveGenerator original, Cloner cloner)62 private PotvinCustomerRelocationSingleMoveGenerator(PotvinCustomerRelocationSingleMoveGenerator original, Cloner cloner) 63 63 : base(original, cloner) { 64 64 } -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/PickupDelivery/PDExchange/PotvinPDExchangeMove.cs
r6787 r7906 65 65 this.Individual = individual.Clone() as PotvinEncoding; 66 66 } 67 68 [StorableConstructor] 69 protected PotvinPDExchangeMove(bool deserializing) : base(deserializing) { } 67 70 68 71 public override IDeepCloneable Clone(Cloner cloner) { -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/PickupDelivery/PDExchange/PotvinPDExchangeMoveMaker.cs
r7080 r7906 44 44 45 45 [StorableConstructor] 46 pr ivatePotvinPDExchangeMoveMaker(bool deserializing) : base(deserializing) { }46 protected PotvinPDExchangeMoveMaker(bool deserializing) : base(deserializing) { } 47 47 48 48 public PotvinPDExchangeMoveMaker() -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/PickupDelivery/PDRearrange/PotvinPDRearrangeMove.cs
r6787 r7906 70 70 } 71 71 72 [StorableConstructor] 73 protected PotvinPDRearrangeMove(bool deserializing) : base(deserializing) { } 74 72 75 #region IVRPMove Members 73 76 -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/PickupDelivery/PDRearrange/PotvinPDRearrangeMoveMaker.cs
r7080 r7906 44 44 45 45 [StorableConstructor] 46 pr ivatePotvinPDRearrangeMoveMaker(bool deserializing) : base(deserializing) { }46 protected PotvinPDRearrangeMoveMaker(bool deserializing) : base(deserializing) { } 47 47 48 48 public PotvinPDRearrangeMoveMaker() -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/PickupDelivery/PDShift/PotvinPDShiftMove.cs
r6787 r7906 75 75 } 76 76 77 [StorableConstructor] 78 protected PotvinPDShiftMove(bool deserializing) : base(deserializing) { } 79 77 80 #region IVRPMove Members 78 81 -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/PickupDelivery/PDShift/PotvinPDShiftMoveMaker.cs
r7791 r7906 45 45 46 46 [StorableConstructor] 47 pr ivatePotvinPDShiftMoveMaker(bool deserializing) : base(deserializing) { }47 protected PotvinPDShiftMoveMaker(bool deserializing) : base(deserializing) { } 48 48 49 49 public PotvinPDShiftMoveMaker() -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/TwoOptStar/PotvinTwoOptStarExhaustiveMoveGenerator.cs
r7865 r7906 44 44 } 45 45 46 private PotvinTwoOptStarExhaustiveMoveGenerator(PotvinTwoOptStar MoveGenerator original, Cloner cloner)46 private PotvinTwoOptStarExhaustiveMoveGenerator(PotvinTwoOptStarExhaustiveMoveGenerator original, Cloner cloner) 47 47 : base(original, cloner) { 48 48 } -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/TwoOptStar/PotvinTwoOptStarMove.cs
r7865 r7906 81 81 } 82 82 83 [StorableConstructor] 84 protected PotvinTwoOptStarMove(bool deserializing) : base(deserializing) { } 85 83 86 #region IVRPMove Members 84 87 -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/TwoOptStar/PotvinTwoOptStarMoveMaker.cs
r7865 r7906 45 45 46 46 [StorableConstructor] 47 pr ivatePotvinTwoOptStarMoveMaker(bool deserializing) : base(deserializing) { }47 protected PotvinTwoOptStarMoveMaker(bool deserializing) : base(deserializing) { } 48 48 49 49 public PotvinTwoOptStarMoveMaker() -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/TwoOptStar/PotvinTwoOptStarMultiMoveGenerator.cs
r7865 r7906 56 56 } 57 57 58 private PotvinTwoOptStarMultiMoveGenerator(PotvinTwoOptStarM oveGenerator original, Cloner cloner)58 private PotvinTwoOptStarMultiMoveGenerator(PotvinTwoOptStarMultiMoveGenerator original, Cloner cloner) 59 59 : base(original, cloner) { 60 60 } -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/TwoOptStar/PotvinTwoOptStarSingleMoveGenerator.cs
r7865 r7906 60 60 } 61 61 62 private PotvinTwoOptStarSingleMoveGenerator(PotvinTwoOptStar MoveGenerator original, Cloner cloner)62 private PotvinTwoOptStarSingleMoveGenerator(PotvinTwoOptStarSingleMoveGenerator original, Cloner cloner) 63 63 : base(original, cloner) { 64 64 } -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/VehicleAssignment/PotvinVehicleAssignmentExhaustiveMoveGenerator.cs
r6857 r7906 44 44 } 45 45 46 private PotvinVehicleAssignmentExhaustiveMoveGenerator(PotvinVehicleAssignment MoveGenerator original, Cloner cloner)46 private PotvinVehicleAssignmentExhaustiveMoveGenerator(PotvinVehicleAssignmentExhaustiveMoveGenerator original, Cloner cloner) 47 47 : base(original, cloner) { 48 48 } -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/VehicleAssignment/PotvinVehicleAssignmentMove.cs
r6857 r7906 70 70 } 71 71 72 [StorableConstructor] 73 protected PotvinVehicleAssignmentMove(bool deserializing) : base(deserializing) { } 74 72 75 #region IVRPMove Members 73 76 -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/VehicleAssignment/PotvinVehicleAssignmentMoveMaker.cs
r6857 r7906 52 52 53 53 [StorableConstructor] 54 pr ivatePotvinVehicleAssignmentMoveMaker(bool deserializing) : base(deserializing) { }54 protected PotvinVehicleAssignmentMoveMaker(bool deserializing) : base(deserializing) { } 55 55 56 56 public PotvinVehicleAssignmentMoveMaker() -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/VehicleAssignment/PotvinVehicleAssignmentMultiMoveGenerator.cs
r6909 r7906 56 56 } 57 57 58 private PotvinVehicleAssignmentMultiMoveGenerator(PotvinVehicleAssignmentM oveGenerator original, Cloner cloner)58 private PotvinVehicleAssignmentMultiMoveGenerator(PotvinVehicleAssignmentMultiMoveGenerator original, Cloner cloner) 59 59 : base(original, cloner) { 60 60 } -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/VehicleAssignment/PotvinVehicleAssignmentSingleMoveGenerator.cs
r6909 r7906 60 60 } 61 61 62 private PotvinVehicleAssignmentSingleMoveGenerator(PotvinVehicleAssignment MoveGenerator original, Cloner cloner)62 private PotvinVehicleAssignmentSingleMoveGenerator(PotvinVehicleAssignmentSingleMoveGenerator original, Cloner cloner) 63 63 : base(original, cloner) { 64 64 } -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Prins/PrinsEncoding.cs
r7856 r7906 140 140 141 141 [StorableConstructor] 142 pr ivatePrinsEncoding(bool serializing)142 protected PrinsEncoding(bool serializing) 143 143 : base(serializing) { 144 144 } -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Tour.cs
r6851 r7906 48 48 } 49 49 50 [StorableConstructor] 51 protected Tour(bool deserializing) : base(deserializing) { } 52 50 53 public double GetTourLength(IVRPProblemInstance instance, IVRPEncoding solution) { 51 54 double length = 0; -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Zhu/ZhuEncoding.cs
r7856 r7906 110 110 111 111 [StorableConstructor] 112 pr ivateZhuEncoding(bool serializing)112 protected ZhuEncoding(bool serializing) 113 113 : base(serializing) { 114 114 }
Note: See TracChangeset
for help on using the changeset viewer.