- Timestamp:
- 08/31/11 11:52:11 (13 years ago)
- Location:
- branches/GeneralizedQAP
- Files:
-
- 2 edited
- 5 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/GeneralizedQAP
- Property svn:mergeinfo changed
/trunk/sources (added) merged: 6648-6649,6652-6656,6661-6674,6676-6681,6684
- Property svn:mergeinfo changed
-
branches/GeneralizedQAP/HeuristicLab.Encodings.PermutationEncoding
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Encodings.PermutationEncoding (added) merged: 6648
- Property svn:mergeinfo changed
-
branches/GeneralizedQAP/HeuristicLab.Encodings.PermutationEncoding/3.3/Moves/Scramble/ScrambleMove.cs
r6684 r6685 38 38 : base(original, cloner) { 39 39 this.StartIndex = original.StartIndex; 40 this.ScrambledIndices = (int[])original.ScrambledIndices.Clone(); 40 if (original.ScrambledIndices != null) 41 this.ScrambledIndices = (int[])original.ScrambledIndices.Clone(); 41 42 } 42 43 public ScrambleMove() : this(-1, null) { }
Note: See TracChangeset
for help on using the changeset viewer.