Changeset 4179 for trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/Potvin/Crossovers
- Timestamp:
- 08/09/10 18:08:14 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/Potvin/Crossovers
- Files:
-
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/Potvin/Crossovers/PotvinCrossover.cs
r4174 r4179 29 29 30 30 namespace HeuristicLab.Problems.VehicleRouting.Encodings.Potvin { 31 [Item("PotvinCrossover", "A VRP crossover operation on a Potvin encoding.")] 31 32 [StorableClass] 32 33 public abstract class PotvinCrossover : VRPCrossover, IStochasticOperator { … … 34 35 get { return (LookupParameter<IRandom>)Parameters["Random"]; } 35 36 } 37 38 [StorableConstructor] 39 protected PotvinCrossover(bool deserializing) : base(deserializing) { } 36 40 37 41 public PotvinCrossover() { -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/Potvin/Crossovers/SequenceBasedCrossover.cs
r4177 r4179 27 27 28 28 namespace HeuristicLab.Problems.VehicleRouting.Encodings.Potvin { 29 [Item(" PotvinSBXCrossover", "The SBX crossover for the Potvin VRP representations. It is implemented as described in Potvin, J.-Y. and Bengio, S. (1996). The Vehicle Routing Problem with Time Windows - Part II: Genetic Search. INFORMS Journal of Computing, 8:165–172.")]29 [Item("SequenceBasedCrossover", "The SBX crossover for the Potvin VRP representations. It is implemented as described in Potvin, J.-Y. and Bengio, S. (1996). The Vehicle Routing Problem with Time Windows - Part II: Genetic Search. INFORMS Journal of Computing, 8:165–172.")] 30 30 [StorableClass] 31 public sealed class PotvinSBXCrossover : PotvinCrossover { 31 public sealed class SequenceBasedCrossover : PotvinCrossover { 32 [StorableConstructor] 33 private SequenceBasedCrossover(bool deserializing) : base(deserializing) { } 34 35 public SequenceBasedCrossover() 36 : base() { } 37 32 38 private Tour FindRoute(PotvinEncoding solution, int city) { 33 39 Tour found = null;
Note: See TracChangeset
for help on using the changeset viewer.