Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/13/10 11:16:52 (14 years ago)
Author:
svonolfe
Message:

Updated naming and descriptions of the VRP operators (#1039)

File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/Alba/Moves/ThreeOpt/PermutationTranslocationMoveHardTabuCriterion.cs

    r4207 r4208  
    2727
    2828namespace HeuristicLab.Problems.VehicleRouting.Encodings.Alba {
    29   [Item("AlbaTranslocationMoveHardTabuCriterion", "An operator which checks if translocation moves are tabu using a hard criterion for a VRP representation.")]
     29  [Item("PermutationTranslocationMoveHardTabuCriterion", "An operator which checks if translocation moves are tabu using a hard criterion for a VRP representation.")]
    3030  [StorableClass]
    31   public sealed class AlbaTranslocationMoveHardTabuCriterion : PermutationMoveOperator, IAlbaTranslocationMoveOperator, ITabuChecker {
     31  public sealed class PermutationTranslocationMoveHardTabuCriterion : PermutationMoveOperator, IAlbaTranslocationMoveOperator, ITabuChecker {
    3232    private TranslocationMoveHardTabuCriterion tabuChecker;
    3333    protected override IPermutationMoveOperator PermutationMoveOperatorParameter {
     
    5757
    5858    [StorableConstructor]
    59     private AlbaTranslocationMoveHardTabuCriterion(bool deserializing) : base(deserializing) { }
     59    private PermutationTranslocationMoveHardTabuCriterion(bool deserializing) : base(deserializing) { }
    6060
    61     public AlbaTranslocationMoveHardTabuCriterion()
     61    public PermutationTranslocationMoveHardTabuCriterion()
    6262      : base() {
    6363      tabuChecker = new TranslocationMoveHardTabuCriterion();
Note: See TracChangeset for help on using the changeset viewer.