#region License Information /* HeuristicLab * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL) * * This file is part of HeuristicLab. * * HeuristicLab is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * HeuristicLab is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with HeuristicLab. If not, see . */ #endregion using System.Linq; using HeuristicLab.Common; using HeuristicLab.Core; using HEAL.Attic; namespace HeuristicLab.Encodings.PermutationEncoding { /// /// Manipulates a permutation array by randomly scrambling the elements in a randomly chosen interval. /// /// /// It is implemented as described in Syswerda, G. (1991). Schedule Optimization Using Genetic Algorithms. In Davis, L. (Ed.) Handbook of Genetic Algorithms, Van Nostrand Reinhold, New York, pp 332-349. /// [Item("ScrambleManipulator", "An operator which manipulates a permutation array by randomly scrambling the elements in a randomly chosen interval. It is implemented as described in Syswerda, G. (1991). Schedule Optimization Using Genetic Algorithms. In Davis, L. (Ed.) Handbook of Genetic Algorithms, Van Nostrand Reinhold, New York, pp 332-349.")] [StorableType("C324E297-C54E-4A18-BF41-3F0EF9595762")] public class ScrambleManipulator : PermutationManipulator { [StorableConstructor] protected ScrambleManipulator(StorableConstructorFlag _) : base(_) { } protected ScrambleManipulator(ScrambleManipulator original, Cloner cloner) : base(original, cloner) { } public ScrambleManipulator() : base() { } public override IDeepCloneable Clone(Cloner cloner) { return new ScrambleManipulator(this, cloner); } /// /// Mixes the elements of the given randomly /// in a randomly chosen interval. /// /// The random number generator. /// The permutation to manipulate. public static void Apply(IRandom random, Permutation permutation) { int breakPoint1, breakPoint2; int[] scrambledIndices, remainingIndices, temp; int selectedIndex, index; breakPoint1 = random.Next(permutation.Length - 1); breakPoint2 = random.Next(breakPoint1 + 1, permutation.Length); // TODO: Use Fisher-Yates-Shuffle rather than complicated code below // scrambledIndices = Enumerable.Range(0, breakPoint2 - breakPoint1 + 1).Shuffle(random).ToArray(); // Also, it would be more memory-efficient to change here and Apply(Permutation, int, int[]) below to interpret scrambleArray as values, not indices // Don't forget the move generator // BackwardsCompatibility3.3 #region This whole code should be replaced by above line when going for 3.4 scrambledIndices = new int[breakPoint2 - breakPoint1 + 1]; remainingIndices = new int[breakPoint2 - breakPoint1 + 1]; for (int i = 0; i < remainingIndices.Length; i++) { // initialise indices remainingIndices[i] = i; } for (int i = 0; i < scrambledIndices.Length; i++) { // generate permutation of indices selectedIndex = random.Next(remainingIndices.Length); scrambledIndices[i] = remainingIndices[selectedIndex]; temp = remainingIndices; remainingIndices = new int[temp.Length - 1]; index = 0; for (int j = 0; j < remainingIndices.Length; j++) { if (index == selectedIndex) { index++; } remainingIndices[j] = temp[index]; index++; } } #endregion Apply(permutation, breakPoint1, scrambledIndices); } public static void Apply(Permutation permutation, int startIndex, int[] scrambleArray) { permutation.Replace(startIndex, scrambleArray.Select(x => permutation[startIndex + x]).ToArray()); } /// /// Mixes the elements of the given randomly /// in a randomly chosen interval. /// /// Calls . /// A random number generator. /// The permutation to manipulate. protected override void Manipulate(IRandom random, Permutation permutation) { Apply(random, permutation); } } }