Changeset 3232 for trunk/sources/HeuristicLab.Encodings.PermutationEncoding/3.3/Moves/ThreeOpt/TranslocationMove.cs
- Timestamp:
- 03/29/10 18:49:55 (15 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Encodings.PermutationEncoding/3.3/Moves/ThreeOpt/TranslocationMove.cs
r3231 r3232 24 24 25 25 namespace HeuristicLab.Encodings.PermutationEncoding { 26 [Item("T hreeOptMove", "A move that changes three edges by performing a translocation.")]26 [Item("TranslocationMove", "A move that changes three edges by performing a translocation.")] 27 27 [StorableClass] 28 public class T hreeOptMove : ThreeIndexMove {29 public T hreeOptMove()28 public class TranslocationMove : ThreeIndexMove { 29 public TranslocationMove() 30 30 : base() { 31 31 } 32 32 33 public T hreeOptMove(int index1, int index2, int index3)33 public TranslocationMove(int index1, int index2, int index3) 34 34 : base(index1, index2, index3, null) { 35 35 } 36 36 37 public T hreeOptMove(int index1, int index2, int index3, Permutation permutation)37 public TranslocationMove(int index1, int index2, int index3, Permutation permutation) 38 38 : base(index1, index2, index3, permutation) { 39 39 }
Note: See TracChangeset
for help on using the changeset viewer.