Changeset 6787
- Timestamp:
- 09/16/11 16:47:57 (13 years ago)
- Location:
- branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/PickupDelivery
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/PickupDelivery/PDExchange/PotvinPDExchangeMove.cs
r6773 r6787 29 29 using HeuristicLab.Problems.VehicleRouting.Interfaces; 30 30 using HeuristicLab.Optimization; 31 using System; 31 32 32 33 namespace HeuristicLab.Problems.VehicleRouting.Encodings.Potvin { … … 81 82 #region IVRPMove Members 82 83 84 [ThreadStatic] 83 85 private static PotvinPDExchangeMoveEvaluator moveEvaluator; 84 86 public VRPMoveEvaluator GetMoveEvaluator() { … … 89 91 } 90 92 93 [ThreadStatic] 91 94 private static PotvinPDExchangeMoveMaker moveMaker; 92 95 public VRPMoveMaker GetMoveMaker() { … … 97 100 } 98 101 102 [ThreadStatic] 99 103 private static PotvinPDExchangeMoveTabuMaker tabuMaker; 100 104 public ITabuMaker GetTabuMaker() { … … 105 109 } 106 110 111 [ThreadStatic] 107 112 private static PotvinPDExchangeTabuCriterion tabuChecker; 108 113 public ITabuChecker GetTabuChecker() { … … 115 120 } 116 121 122 [ThreadStatic] 117 123 private static PotvinPDExchangeTabuCriterion softTabuChecker; 118 124 public ITabuChecker GetSoftTabuChecker() { -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/PickupDelivery/PDRearrange/PotvinPDRearrangeMove.cs
r6773 r6787 29 29 using HeuristicLab.Problems.VehicleRouting.Interfaces; 30 30 using HeuristicLab.Optimization; 31 using System; 31 32 32 33 namespace HeuristicLab.Problems.VehicleRouting.Encodings.Potvin { … … 71 72 #region IVRPMove Members 72 73 74 [ThreadStatic] 73 75 private static PotvinPDRearrangeMoveEvaluator moveEvaluator; 74 76 public VRPMoveEvaluator GetMoveEvaluator() { … … 79 81 } 80 82 83 [ThreadStatic] 81 84 private static PotvinPDRearrangeMoveMaker moveMaker; 82 85 public VRPMoveMaker GetMoveMaker() { … … 87 90 } 88 91 92 [ThreadStatic] 89 93 private static PotvinPDRearrangeMoveTabuMaker tabuMaker; 90 94 public ITabuMaker GetTabuMaker() { … … 95 99 } 96 100 101 [ThreadStatic] 97 102 private static PotvinPDRearrangeTabuCriterion tabuChecker; 98 103 public ITabuChecker GetTabuChecker() { … … 105 110 } 106 111 112 [ThreadStatic] 107 113 private static PotvinPDRearrangeTabuCriterion softTabuChecker; 108 114 public ITabuChecker GetSoftTabuChecker() { -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/PickupDelivery/PDShift/PotvinPDShiftMove.cs
r6773 r6787 29 29 using HeuristicLab.Problems.VehicleRouting.Interfaces; 30 30 using HeuristicLab.Optimization; 31 using System; 31 32 32 33 namespace HeuristicLab.Problems.VehicleRouting.Encodings.Potvin { … … 76 77 #region IVRPMove Members 77 78 79 [ThreadStatic] 78 80 private static PotvinPDShiftMoveEvaluator moveEvaluator; 79 81 public VRPMoveEvaluator GetMoveEvaluator() { … … 84 86 } 85 87 88 [ThreadStatic] 86 89 private static PotvinPDShiftMoveMaker moveMaker; 87 90 public VRPMoveMaker GetMoveMaker() { … … 92 95 } 93 96 97 [ThreadStatic] 94 98 private static PotvinPDShiftMoveTabuMaker tabuMaker; 95 99 public ITabuMaker GetTabuMaker() { … … 100 104 } 101 105 106 [ThreadStatic] 102 107 private static PotvinPDShiftTabuCriterion tabuChecker; 103 108 public ITabuChecker GetTabuChecker() { … … 110 115 } 111 116 117 [ThreadStatic] 112 118 private static PotvinPDShiftTabuCriterion softTabuChecker; 113 119 public ITabuChecker GetSoftTabuChecker() {
Note: See TracChangeset
for help on using the changeset viewer.