[7407] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[16077] | 3 | * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[7407] | 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 |
|
---|
[15511] | 22 | using System;
|
---|
[7407] | 23 | using System.Collections.Generic;
|
---|
[15511] | 24 | using System.Linq;
|
---|
[7407] | 25 | using HeuristicLab.Common;
|
---|
| 26 | using HeuristicLab.Core;
|
---|
| 27 | using HeuristicLab.Data;
|
---|
| 28 | using HeuristicLab.Encodings.IntegerVectorEncoding;
|
---|
| 29 | using HeuristicLab.Optimization;
|
---|
| 30 | using HeuristicLab.Parameters;
|
---|
| 31 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
[15511] | 32 | using HeuristicLab.Random;
|
---|
[16712] | 33 | using HEAL.Attic;
|
---|
[7407] | 34 |
|
---|
| 35 | namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment {
|
---|
[7505] | 36 | [Item("Stochastic N-Move SingleMoveGenerator", "Randomly samples a single N-Move.")]
|
---|
[16712] | 37 | [StorableType("7CC8D0D6-C865-485F-A16A-C2ED764C6AC4")]
|
---|
[15504] | 38 | public class StochasticNMoveSingleMoveGenerator : GQAPNMoveGenerator, IStochasticOperator, ISingleMoveGenerator {
|
---|
| 39 |
|
---|
[7407] | 40 | public ILookupParameter<IRandom> RandomParameter {
|
---|
| 41 | get { return (ILookupParameter<IRandom>)Parameters["Random"]; }
|
---|
| 42 | }
|
---|
| 43 |
|
---|
| 44 | [StorableConstructor]
|
---|
[16712] | 45 | protected StochasticNMoveSingleMoveGenerator(StorableConstructorFlag _) : base(_) { }
|
---|
[7407] | 46 | protected StochasticNMoveSingleMoveGenerator(StochasticNMoveSingleMoveGenerator original, Cloner cloner) : base(original, cloner) { }
|
---|
| 47 | public StochasticNMoveSingleMoveGenerator()
|
---|
| 48 | : base() {
|
---|
| 49 | Parameters.Add(new LookupParameter<IRandom>("Random", "The random number generator that should be used."));
|
---|
| 50 | }
|
---|
| 51 |
|
---|
| 52 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 53 | return new StochasticNMoveSingleMoveGenerator(this, cloner);
|
---|
| 54 | }
|
---|
| 55 |
|
---|
[7412] | 56 | public static NMove GenerateUpToN(IRandom random, IntegerVector assignment, int n, DoubleArray capacities) {
|
---|
| 57 | return GenerateExactlyN(random, assignment, random.Next(n) + 1, capacities);
|
---|
| 58 | }
|
---|
| 59 |
|
---|
[15553] | 60 | public static NMove GenerateOneMove(IRandom random, IntegerVector assignment, DoubleArray capacities) {
|
---|
| 61 | var locations = capacities.Length;
|
---|
| 62 | if (locations <= 1) throw new ArgumentException("There must be at least two locations.");
|
---|
| 63 | var dim = assignment.Length;
|
---|
| 64 | var equip = random.Next(dim);
|
---|
| 65 | var equipments = new List<int>(1) { equip };
|
---|
| 66 |
|
---|
| 67 | var reassignment = new int[dim];
|
---|
[15572] | 68 | reassignment[equip] = 1 + (assignment[equip] + random.Next(1, locations)) % locations;
|
---|
[15553] | 69 |
|
---|
| 70 | return new NMove(reassignment, equipments);
|
---|
| 71 | }
|
---|
| 72 |
|
---|
| 73 | public static NMove GenerateTwoMove(IRandom random, IntegerVector assignment, DoubleArray capacities) {
|
---|
| 74 | var locations = capacities.Length;
|
---|
| 75 | if (locations <= 1) throw new ArgumentException("There must be at least two locations.");
|
---|
| 76 | var dim = assignment.Length;
|
---|
[15572] | 77 | var equipments = new List<int>(2) { random.Next(dim) };
|
---|
| 78 | equipments.Add((equipments[0] + random.Next(1, dim)) % dim);
|
---|
[15553] | 79 |
|
---|
| 80 | var reassignment = new int[dim];
|
---|
| 81 | for (var i = 0; i < 2; i++) {
|
---|
| 82 | var equip = equipments[i];
|
---|
[15572] | 83 | reassignment[equip] = 1 + (assignment[equip] + random.Next(1, locations)) % locations;
|
---|
[15553] | 84 | }
|
---|
| 85 | return new NMove(reassignment, equipments);
|
---|
| 86 | }
|
---|
| 87 |
|
---|
[7412] | 88 | public static NMove GenerateExactlyN(IRandom random, IntegerVector assignment, int n, DoubleArray capacities) {
|
---|
[15553] | 89 | if (n == 1) return GenerateOneMove(random, assignment, capacities);
|
---|
| 90 | if (n == 2) return GenerateTwoMove(random, assignment, capacities);
|
---|
| 91 | var locations = capacities.Length;
|
---|
| 92 | if (locations <= 1) throw new ArgumentException("There must be at least two locations.");
|
---|
[15511] | 93 | var dim = assignment.Length;
|
---|
[15553] | 94 | var equipments = Enumerable.Range(0, dim).SampleRandomWithoutRepetition(random, n, dim).ToList();
|
---|
| 95 |
|
---|
[15511] | 96 | var reassignment = new int[dim];
|
---|
| 97 | for (var i = 0; i < n; i++) {
|
---|
| 98 | var equip = equipments[i];
|
---|
[15572] | 99 | reassignment[equip] = 1 + (assignment[equip] + random.Next(1, locations)) % locations;
|
---|
[7407] | 100 | }
|
---|
[15511] | 101 | return new NMove(reassignment, equipments);
|
---|
[7407] | 102 | }
|
---|
| 103 |
|
---|
[15504] | 104 | public override IEnumerable<NMove> GenerateMoves(IntegerVector assignment, int n, GQAPInstance problemInstance) {
|
---|
| 105 | yield return GenerateUpToN(RandomParameter.ActualValue, assignment, n, problemInstance.Capacities);
|
---|
[7407] | 106 | }
|
---|
| 107 | }
|
---|
| 108 | }
|
---|