- Timestamp:
- 03/18/10 11:54:34 (15 years ago)
- 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 23 23 using HeuristicLab.Core; 24 24 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 25 using HeuristicLab.Optimization; 25 26 26 27 namespace HeuristicLab.Encodings.PermutationEncoding { 27 28 [Item("ExhaustiveTwoOptMoveGenerator", "Generates all possible 2-opt moves from a given permutation.")] 28 29 [StorableClass] 29 public class ExhaustiveTwoOptMoveGenerator : TwoOptMoveGenerator {30 public class ExhaustiveTwoOptMoveGenerator : TwoOptMoveGenerator, IExhaustiveMoveGenerator { 30 31 public static TwoOptMove[] Apply(Permutation permutation) { 31 32 int length = permutation.Length;
Note: See TracChangeset
for help on using the changeset viewer.