Changeset 17704 for branches/2521_ProblemRefactoring/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Alba/LocalImprovement/AlbaLambdaInterchangeLocalImprovementOperator.cs
- Timestamp:
- 07/28/20 23:36:25 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Alba/LocalImprovement/AlbaLambdaInterchangeLocalImprovementOperator.cs
r17698 r17704 20 20 #endregion 21 21 22 using HEAL.Attic; 23 using HeuristicLab.Common; 24 using HeuristicLab.Core; 25 using HeuristicLab.Data; 22 26 using HeuristicLab.Optimization; 23 using HeuristicLab.Core;24 using HEAL.Attic;25 using HeuristicLab.Data;26 using HeuristicLab.Common;27 27 using HeuristicLab.Parameters; 28 28 using HeuristicLab.Problems.VehicleRouting.Interfaces; … … 31 31 [Item("AlbaLambdaInterchangeLocalImprovementOperator", "Takes a solution and finds the local optimum with respect to the lambda interchange neighborhood by decending along the steepest gradient.")] 32 32 [StorableType("84981F03-B886-4ADD-8DB5-C12628404335")] 33 public class AlbaLambdaInterchangeLocalImprovementOperator : VRPOperator, IStochasticOperator, ILocalImprovementOperator, ISingleObjectiveOperator {33 public class AlbaLambdaInterchangeLocalImprovementOperator : VRPOperator, IStochasticOperator, ILocalImprovementOperator, ISingleObjectiveOperator, IAlbaOperator { 34 34 35 35 public IValueLookupParameter<IntValue> MaximumIterationsParameter {
Note: See TracChangeset
for help on using the changeset viewer.