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/Manipulators/PotvinLocalSearchManipulator.cs

    r4341 r4346  
    2828
    2929namespace HeuristicLab.Problems.VehicleRouting.Encodings.Potvin {
    30   [Item("LocalSearchManipulator", "The LSM operator which manipulates a VRP representation.  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  [Item("PotvinLocalSearchManipulator", "The LSM operator which manipulates a VRP representation.  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.")]
    3131  [StorableClass]
    32   public sealed class LocalSearchManipulator : PotvinManipulator {
     32  public sealed class PotvinLocalSearchManipulator : PotvinManipulator {
    3333    public IValueParameter<IntValue> Iterations {
    3434      get { return (IValueParameter<IntValue>)Parameters["Iterations"]; }
     
    3636
    3737    [StorableConstructor]
    38     private LocalSearchManipulator(bool deserializing) : base(deserializing) { }
     38    private PotvinLocalSearchManipulator(bool deserializing) : base(deserializing) { }
    3939
    40     public LocalSearchManipulator() : base() {
     40    public PotvinLocalSearchManipulator() : base() {
    4141      Parameters.Add(new ValueParameter<IntValue>("Iterations", "The number of max iterations.", new IntValue(100)));
    4242    }
Note: See TracChangeset for help on using the changeset viewer.