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/Alba/Moves/AlbaPermutationMoveOperator.cs

    r4341 r4346  
    2727
    2828namespace HeuristicLab.Problems.VehicleRouting.Encodings.Alba {
    29   [Item("PermutationMoveOperator", "A move operator for an Alba VRP representation using an inner permutation move operator.")]
     29  [Item("AlbaPermutationMoveOperator", "A move operator for an Alba VRP representation using an inner permutation move operator.")]
    3030  [StorableClass]
    31   public abstract class PermutationMoveOperator : AlbaMoveOperator {   
     31  public abstract class AlbaPermutationMoveOperator : AlbaMoveOperator {   
    3232    [Storable]
    3333    protected abstract IPermutationMoveOperator PermutationMoveOperatorParameter { get; set; }
    3434
    3535    [StorableConstructor]
    36     protected PermutationMoveOperator(bool deserializing) : base(deserializing) { }
     36    protected AlbaPermutationMoveOperator(bool deserializing) : base(deserializing) { }
    3737
    38     public PermutationMoveOperator()
     38    public AlbaPermutationMoveOperator()
    3939      : base()
    4040    {
Note: See TracChangeset for help on using the changeset viewer.