Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Moves/StochasticNMoveSingleMoveGenerator.cs @ 16077

Last change on this file since 16077 was 16077, checked in by abeham, 6 years ago

#2936: Added integration branch

File size: 4.7 KB
RevLine 
[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]22using System;
[7407]23using System.Collections.Generic;
[15511]24using System.Linq;
[7407]25using HeuristicLab.Common;
26using HeuristicLab.Core;
27using HeuristicLab.Data;
28using HeuristicLab.Encodings.IntegerVectorEncoding;
29using HeuristicLab.Optimization;
30using HeuristicLab.Parameters;
31using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
[15511]32using HeuristicLab.Random;
[7407]33
34namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment {
[7505]35  [Item("Stochastic N-Move SingleMoveGenerator", "Randomly samples a single N-Move.")]
[7407]36  [StorableClass]
[15504]37  public class StochasticNMoveSingleMoveGenerator : GQAPNMoveGenerator, IStochasticOperator, ISingleMoveGenerator {
38   
[7407]39    public ILookupParameter<IRandom> RandomParameter {
40      get { return (ILookupParameter<IRandom>)Parameters["Random"]; }
41    }
42
43    [StorableConstructor]
44    protected StochasticNMoveSingleMoveGenerator(bool deserializing) : base(deserializing) { }
45    protected StochasticNMoveSingleMoveGenerator(StochasticNMoveSingleMoveGenerator original, Cloner cloner) : base(original, cloner) { }
46    public StochasticNMoveSingleMoveGenerator()
47      : base() {
48      Parameters.Add(new LookupParameter<IRandom>("Random", "The random number generator that should be used."));
49    }
50
51    public override IDeepCloneable Clone(Cloner cloner) {
52      return new StochasticNMoveSingleMoveGenerator(this, cloner);
53    }
54
[7412]55    public static NMove GenerateUpToN(IRandom random, IntegerVector assignment, int n, DoubleArray capacities) {
56      return GenerateExactlyN(random, assignment, random.Next(n) + 1, capacities);
57    }
58
[15553]59    public static NMove GenerateOneMove(IRandom random, IntegerVector assignment, DoubleArray capacities) {
60      var locations = capacities.Length;
61      if (locations <= 1) throw new ArgumentException("There must be at least two locations.");
62      var dim = assignment.Length;
63      var equip = random.Next(dim);
64      var equipments = new List<int>(1) { equip };
65
66      var reassignment = new int[dim];
[15572]67      reassignment[equip] = 1 + (assignment[equip] + random.Next(1, locations)) % locations;
[15553]68
69      return new NMove(reassignment, equipments);
70    }
71
72    public static NMove GenerateTwoMove(IRandom random, IntegerVector assignment, DoubleArray capacities) {
73      var locations = capacities.Length;
74      if (locations <= 1) throw new ArgumentException("There must be at least two locations.");
75      var dim = assignment.Length;
[15572]76      var equipments = new List<int>(2) { random.Next(dim) };
77      equipments.Add((equipments[0] + random.Next(1, dim)) % dim);
[15553]78
79      var reassignment = new int[dim];
80      for (var i = 0; i < 2; i++) {
81        var equip = equipments[i];
[15572]82        reassignment[equip] = 1 + (assignment[equip] + random.Next(1, locations)) % locations;
[15553]83      }
84      return new NMove(reassignment, equipments);
85    }
86
[7412]87    public static NMove GenerateExactlyN(IRandom random, IntegerVector assignment, int n, DoubleArray capacities) {
[15553]88      if (n == 1) return GenerateOneMove(random, assignment, capacities);
89      if (n == 2) return GenerateTwoMove(random, assignment, capacities);
90      var locations = capacities.Length;
91      if (locations <= 1) throw new ArgumentException("There must be at least two locations.");
[15511]92      var dim = assignment.Length;
[15553]93      var equipments = Enumerable.Range(0, dim).SampleRandomWithoutRepetition(random, n, dim).ToList();
94
[15511]95      var reassignment = new int[dim];
96      for (var i = 0; i < n; i++) {
97        var equip = equipments[i];
[15572]98        reassignment[equip] = 1 + (assignment[equip] + random.Next(1, locations)) % locations;
[7407]99      }
[15511]100      return new NMove(reassignment, equipments);
[7407]101    }
102
[15504]103    public override IEnumerable<NMove> GenerateMoves(IntegerVector assignment, int n, GQAPInstance problemInstance) {
104      yield return GenerateUpToN(RandomParameter.ActualValue, assignment, n, problemInstance.Capacities);
[7407]105    }
106  }
107}
Note: See TracBrowser for help on using the repository browser.