- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Problems.VehicleRouting
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Prins/Manipulators/PrinsExhaustiveLSManipulator.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using HeuristicLab.Common; 24 24 using HeuristicLab.Core; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Attic; 26 26 27 27 namespace HeuristicLab.Problems.VehicleRouting.Encodings.Prins { 28 28 [Item("PrinsExhaustiveLSManipulator", "An operator which manipulates a VRP representation by using the exhaustive Prins local search. It is implemented as described in Prins, C. (2004). A simple and effective evolutionary algorithm for the vehicle routing problem. Computers & Operations Research, 12:1985-2002.")] 29 [Storable Class]29 [StorableType("D0C880A5-B777-436D-9E01-0A450C1327C5")] 30 30 public sealed class PrinsExhaustiveLSManipulator : PrinsLSManipulator { 31 31 [StorableConstructor] 32 private PrinsExhaustiveLSManipulator( bool deserializing) : base(deserializing) { }32 private PrinsExhaustiveLSManipulator(StorableConstructorFlag _) : base(_) { } 33 33 34 34 public PrinsExhaustiveLSManipulator() -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Prins/Manipulators/PrinsLSManipulator.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 25 25 using HeuristicLab.Data; 26 26 using HeuristicLab.Parameters; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 28 28 using HeuristicLab.Problems.VehicleRouting.Interfaces; 29 29 30 30 namespace HeuristicLab.Problems.VehicleRouting.Encodings.Prins { 31 31 [Item("PrinsLSManipulator", "An operator which manipulates a VRP representation by using the Prins local search. It is implemented as described in Prins, C. (2004). A simple and effective evolutionary algorithm for the vehicle routing problem. Computers & Operations Research, 12:1985-2002.")] 32 [Storable Class]32 [StorableType("11400A09-F3A9-4059-9C82-426B228C2CA0")] 33 33 public abstract class PrinsLSManipulator : PrinsManipulator, IVRPLocalSearchManipulator { 34 34 public IValueParameter<IntValue> Iterations { … … 37 37 38 38 [StorableConstructor] 39 protected PrinsLSManipulator( bool deserializing) : base(deserializing) { }39 protected PrinsLSManipulator(StorableConstructorFlag _) : base(_) { } 40 40 41 41 public PrinsLSManipulator() -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Prins/Manipulators/PrinsManipulator.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 24 24 using HeuristicLab.Optimization; 25 25 using HeuristicLab.Parameters; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 27 27 using HeuristicLab.Problems.VehicleRouting.Encodings.General; 28 28 using HeuristicLab.Problems.VehicleRouting.Interfaces; … … 30 30 namespace HeuristicLab.Problems.VehicleRouting.Encodings.Prins { 31 31 [Item("PrinsManipulator", "An operator which manipulates a VRP representation.")] 32 [Storable Class]32 [StorableType("AF313602-8AFC-4722-AA47-FFDCF39CF3E4")] 33 33 public abstract class PrinsManipulator : VRPManipulator, IStochasticOperator, IPrinsOperator { 34 34 public ILookupParameter<IRandom> RandomParameter { … … 37 37 38 38 [StorableConstructor] 39 protected PrinsManipulator( bool deserializing) : base(deserializing) { }39 protected PrinsManipulator(StorableConstructorFlag _) : base(_) { } 40 40 41 41 public PrinsManipulator() -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Prins/Manipulators/PrinsPermutationManipulator.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 24 24 using HeuristicLab.Encodings.PermutationEncoding; 25 25 using HeuristicLab.Parameters; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 27 27 28 28 namespace HeuristicLab.Problems.VehicleRouting.Encodings.Prins { 29 29 [Item("PrinsPermutationManipulator", "An operator which manipulates a VRP representation by using a standard permutation manipulator. It is implemented as described in Prins, C. (2004). A simple and effective evolutionary algorithm for the vehicle routing problem. Computers & Operations Research, 12:1985-2002.")] 30 [Storable Class]30 [StorableType("D5455C8E-B245-4706-AC26-86B4085B6339")] 31 31 public sealed class PrinsPermutationManipulator : PrinsManipulator { 32 32 public IValueLookupParameter<IPermutationManipulator> InnerManipulatorParameter { … … 35 35 36 36 [StorableConstructor] 37 private PrinsPermutationManipulator( bool deserializing) : base(deserializing) { }37 private PrinsPermutationManipulator(StorableConstructorFlag _) : base(_) { } 38 38 39 39 public PrinsPermutationManipulator() -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Prins/Manipulators/PrinsStochasticLSManipulator.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 25 25 using HeuristicLab.Data; 26 26 using HeuristicLab.Parameters; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 28 28 29 29 namespace HeuristicLab.Problems.VehicleRouting.Encodings.Prins { 30 30 [Item("PrinsStochasticLSManipulator", "An operator which manipulates a VRP representation by using the stochastic version of the Prins local search. It is implemented as described in Prins, C. (2004). A simple and effective evolutionary algorithm for the vehicle routing problem. Computers & Operations Research, 12:1985-2002.")] 31 [Storable Class]31 [StorableType("0EA1C024-7FDA-4E52-8186-D2BAF9D5AB24")] 32 32 public sealed class PrinsStochasticLSManipulator : PrinsLSManipulator { 33 33 public IValueParameter<IntValue> SampleSize { … … 36 36 37 37 [StorableConstructor] 38 private PrinsStochasticLSManipulator( bool deserializing) : base(deserializing) { }38 private PrinsStochasticLSManipulator(StorableConstructorFlag _) : base(_) { } 39 39 40 40 public PrinsStochasticLSManipulator()
Note: See TracChangeset
for help on using the changeset viewer.