Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/18/10 11:54:34 (14 years ago)
Author:
abeham
Message:

Added simulated annealing algorithm #923

Location:
trunk/sources/HeuristicLab.Encodings.PermutationEncoding/3.3/Moves/TwoOpt
Files:
2 added
1 deleted
1 edited

Legend:

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

    r3053 r3098  
    2323using HeuristicLab.Core;
    2424using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     25using HeuristicLab.Optimization;
    2526
    2627namespace HeuristicLab.Encodings.PermutationEncoding {
    2728  [Item("ExhaustiveTwoOptMoveGenerator", "Generates all possible 2-opt moves from a given permutation.")]
    2829  [StorableClass]
    29   public class ExhaustiveTwoOptMoveGenerator : TwoOptMoveGenerator {
     30  public class ExhaustiveTwoOptMoveGenerator : TwoOptMoveGenerator, IExhaustiveMoveGenerator {
    3031    public static TwoOptMove[] Apply(Permutation permutation) {
    3132      int length = permutation.Length;
Note: See TracChangeset for help on using the changeset viewer.