Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/26/10 00:04:24 (14 years ago)
Author:
abeham
Message:

updated permutation moves, fixed 3-opt #889

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Encodings.PermutationEncoding/3.3/Moves/TwoOpt/TwoOptTabuMoveMaker.cs

    r3104 r3221  
    3232  [StorableClass]
    3333  public class TwoOptTabuMoveMaker : TabuMoveMaker, ITwoOptPermutationMoveOperator {
     34    public override bool CanChangeName {
     35      get { return false; }
     36    }
    3437    public ILookupParameter<Permutation> PermutationParameter {
    3538      get { return (ILookupParameter<Permutation>)Parameters["Permutation"]; }
     
    5356        permutation.GetCircular(move.Index2 + 1));
    5457    }
    55 
    56     public override bool CanChangeName {
    57       get { return false; }
    58     }
    5958  }
    6059}
Note: See TracChangeset for help on using the changeset viewer.