Changeset 3340 for trunk/sources/HeuristicLab.Encodings.PermutationEncoding/3.3/Moves/TwoOpt/InversionMoveAbsoluteAttribute.cs
- Timestamp:
- 04/14/10 03:52:07 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Encodings.PermutationEncoding/3.3/Moves/TwoOpt/InversionMoveAbsoluteAttribute.cs
r3233 r3340 26 26 [Item("InversionMoveAbsoluteAttribute", "Specifies the tabu attributes for an inversion move (2-opt) on an absolute position permutation.")] 27 27 [StorableClass] 28 public class InversionMoveAbsoluteAttribute : Item{28 public class InversionMoveAbsoluteAttribute : PermutationMoveAttribute { 29 29 [Storable] 30 30 public int Index1 { get; private set; } … … 42 42 43 43 public InversionMoveAbsoluteAttribute() 44 : this(-1, -1, -1, -1 ) { }44 : this(-1, -1, -1, -1, -1) { } 45 45 46 public InversionMoveAbsoluteAttribute(int index1, int number1, int index2, int number2 )47 : base( ) {46 public InversionMoveAbsoluteAttribute(int index1, int number1, int index2, int number2, double moveQuality) 47 : base(moveQuality) { 48 48 Index1 = index1; 49 49 Number1 = number1;
Note: See TracChangeset
for help on using the changeset viewer.