- Timestamp:
- 09/15/11 16:32:43 (13 years ago)
- Location:
- branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/CustomerRelocation
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/CustomerRelocation/PotvinCustomerRelocationMove.cs
r6751 r6772 28 28 using HeuristicLab.Data; 29 29 using HeuristicLab.Problems.VehicleRouting.Interfaces; 30 using HeuristicLab.Optimization; 30 31 31 32 namespace HeuristicLab.Problems.VehicleRouting.Encodings.Potvin { … … 83 84 } 84 85 86 public ITabuMaker GetTabuMaker() { 87 return new PotvinCustomerRelocationMoveTabuMaker(); 88 } 89 90 public ITabuChecker GetTabuChecker() { 91 return new PotvinCustomerRelocationMoveTabuCriterion(); 92 } 93 94 public ITabuChecker GetSoftTabuChecker() { 95 PotvinCustomerRelocationMoveTabuCriterion tabuChecker = new PotvinCustomerRelocationMoveTabuCriterion(); 96 tabuChecker.UseAspirationCriterion.Value = true; 97 98 return tabuChecker; 99 } 100 85 101 #endregion 86 102 } -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/CustomerRelocation/PotvinCustomerRelocationMoveTabuCriterion.cs
r5127 r6772 32 32 [Item("PotvinCustomerRelocationTabuCriterion", @"Checks if a certain customer relocation move is tabu.")] 33 33 [StorableClass] 34 public class PotvinCustomerRelocationMoveTabuCriterion : SingleSuccessorOperator, IPotvinCustomerRelocationMoveOperator, ITabuChecker, IPotvinOperator {34 public class PotvinCustomerRelocationMoveTabuCriterion : SingleSuccessorOperator, IPotvinCustomerRelocationMoveOperator, ITabuChecker, IPotvinOperator, IVRPMoveOperator { 35 35 public override bool CanChangeName { 36 36 get { return false; }
Note: See TracChangeset
for help on using the changeset viewer.