Free cookie consent management tool by TermsFeed Policy Generator

source: branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Moves/StochasticNMoveSingleMoveGenerator.cs @ 15558

Last change on this file since 15558 was 15553, checked in by abeham, 7 years ago

#1614:

  • Implementing basic algorithm according to paper (rechecking all operators)
  • Checking implementation with paper
  • Improved speed of move generator
  • Improved speed of randomized solution creator
File size: 5.0 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2017 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
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
22using System;
23using System.Collections.Generic;
24using System.Linq;
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;
32using HeuristicLab.Random;
33
34namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment {
35  [Item("Stochastic N-Move SingleMoveGenerator", "Randomly samples a single N-Move.")]
36  [StorableClass]
37  public class StochasticNMoveSingleMoveGenerator : GQAPNMoveGenerator, IStochasticOperator, ISingleMoveGenerator {
38   
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
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
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];
67      reassignment[equip] = ReassignEquipment(random, equip, assignment[equip], locations);
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;
76      var equipments = new List<int>(2) { random.Next(dim), -1 };
77      do {
78        equipments[1] = random.Next(dim);
79      } while (equipments[0] == equipments[1]);
80
81      var reassignment = new int[dim];
82      for (var i = 0; i < 2; i++) {
83        var equip = equipments[i];
84        reassignment[equip] = ReassignEquipment(random, equip, assignment[equip], locations);
85      }
86      return new NMove(reassignment, equipments);
87    }
88
89    public static NMove GenerateExactlyN(IRandom random, IntegerVector assignment, int n, DoubleArray capacities) {
90      if (n == 1) return GenerateOneMove(random, assignment, capacities);
91      if (n == 2) return GenerateTwoMove(random, assignment, capacities);
92      var locations = capacities.Length;
93      if (locations <= 1) throw new ArgumentException("There must be at least two locations.");
94      var dim = assignment.Length;
95      var equipments = Enumerable.Range(0, dim).SampleRandomWithoutRepetition(random, n, dim).ToList();
96
97      var reassignment = new int[dim];
98      for (var i = 0; i < n; i++) {
99        var equip = equipments[i];
100        reassignment[equip] = ReassignEquipment(random, equip, assignment[equip], locations);
101      }
102      return new NMove(reassignment, equipments);
103    }
104
105    private static int ReassignEquipment(IRandom random, int equip, int prevLocation, int locations) {
106      var newLoc = random.Next(locations) + 1;
107      while (newLoc == prevLocation + 1)
108        newLoc = random.Next(locations) + 1;
109      return newLoc;
110    }
111
112    public override IEnumerable<NMove> GenerateMoves(IntegerVector assignment, int n, GQAPInstance problemInstance) {
113      yield return GenerateUpToN(RandomParameter.ActualValue, assignment, n, problemInstance.Capacities);
114    }
115  }
116}
Note: See TracBrowser for help on using the repository browser.