Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking/3.3/Encodings/GroupingVector/Moves/SwapGrouping/StochasticSwapGroupingMoveGenerator.cs @ 9563

Last change on this file since 9563 was 9563, checked in by jhelm, 11 years ago

#1966: Implemented additional Operator-Wrappers for PackingSequence and GroupingVector; Implemented additional problem-class for Rosenbauer-Problemstatement; Added marker-interfaces for decoder-types;

File size: 3.4 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 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.Collections.Generic;
23using HeuristicLab.Common;
24using HeuristicLab.Core;
25using HeuristicLab.Data;
26using HeuristicLab.Optimization;
27using HeuristicLab.Parameters;
28using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
29
30namespace HeuristicLab.Encodings.PackingEncoding.GroupingVector {
31  [Item("Stochastic SwapGrouping Move Generator", "Generates a number of possible grouping moves from a given grouping vector.")]
32  [StorableClass]
33  public class StochasticSwapGroupingMoveGenerator : SwapGroupingMoveGenerator, IMultiMoveGenerator, IStochasticOperator {
34    public ILookupParameter<IRandom> RandomParameter {
35      get { return (ILookupParameter<IRandom>)Parameters["Random"]; }
36    }
37    public IValueLookupParameter<IntValue> SampleSizeParameter {
38      get { return (IValueLookupParameter<IntValue>)Parameters["SampleSize"]; }
39    }
40
41    public IntValue SampleSize {
42      get { return SampleSizeParameter.Value; }
43      set { SampleSizeParameter.Value = value; }
44    }
45
46    [StorableConstructor]
47    protected StochasticSwapGroupingMoveGenerator(bool deserializing) : base(deserializing) { }
48    protected StochasticSwapGroupingMoveGenerator(StochasticSwapGroupingMoveGenerator original, Cloner cloner) : base(original, cloner) { }
49    public StochasticSwapGroupingMoveGenerator()
50      : base() {
51      Parameters.Add(new LookupParameter<IRandom>("Random", "The random number generator."));
52      Parameters.Add(new ValueLookupParameter<IntValue>("SampleSize", "The number of moves to generate."));
53    }
54
55    public override IDeepCloneable Clone(Cloner cloner) {
56      return new StochasticSwapGroupingMoveGenerator(this, cloner);
57    }
58
59    public static SwapGroupingMove[] Apply(GroupingVectorEncoding groupingVector, IRandom random, int sampleSize) {
60
61      int nrOfBins = 0;
62      foreach (int binNr in groupingVector.GroupingVector) {
63        if (binNr > nrOfBins)
64          nrOfBins = binNr;
65      }
66      nrOfBins++;
67      var generatedMoves = new List<SwapGroupingMove>();
68      var moves = new List<SwapGroupingMove>(ExhaustiveSwapGroupingMoveGenerator.Generate(groupingVector, nrOfBins));
69      int moveCount = moves.Count;
70      for (int i = 0; i < sampleSize; i++) {
71        generatedMoves.Add(moves[random.Next(moveCount)]);
72      }
73
74      return generatedMoves.ToArray();
75    }
76
77    protected override SwapGroupingMove[] GenerateMoves(GroupingVectorEncoding SwapGrouping) {
78      IRandom random = RandomParameter.ActualValue;
79      return Apply(SwapGrouping, random, SampleSizeParameter.ActualValue.Value);
80    }
81  }
82}
Note: See TracBrowser for help on using the repository browser.