Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/31/10 14:03:12 (14 years ago)
Author:
svonolfe
Message:

Renamed operators, added comments according to code review (#1039)

File:
1 moved

Legend:

Unmodified
Added
Removed
  • branches/VRP/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/Potvin/Crossovers/PotvinSequenceBasedCrossover.cs

    r4341 r4346  
    2727
    2828namespace HeuristicLab.Problems.VehicleRouting.Encodings.Potvin {
    29   [Item("SequenceBasedCrossover", "The SBX crossover for a 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("PotvinSequenceBasedCrossover", "The SBX crossover for a 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.")]
    3030  [StorableClass]
    31   public sealed class SequenceBasedCrossover : PotvinCrossover {
     31  public sealed class PotvinSequenceBasedCrossover : PotvinCrossover {
    3232    [StorableConstructor]
    33     private SequenceBasedCrossover(bool deserializing) : base(deserializing) { }
     33    private PotvinSequenceBasedCrossover(bool deserializing) : base(deserializing) { }
    3434
    35     public SequenceBasedCrossover()
     35    public PotvinSequenceBasedCrossover()
    3636      : base() { }
    3737       
Note: See TracChangeset for help on using the changeset viewer.