Free cookie consent management tool by TermsFeed Policy Generator

source: branches/FitnessLandscapeAnalysis/HeuristicLab.Problems.NK/InteractionInitializers/IncreasingBlockSizeInteractionsInitializer.cs @ 12566

Last change on this file since 12566 was 12566, checked in by ascheibe, 10 years ago

#2306

  • removed unused usings
  • renamed plugin.cs file
  • fixed prebuild event
  • fixed plugin dependencies
  • added license headers
  • updated assemblyinfo
File size: 3.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2015 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 System.Linq;
24using HeuristicLab.Common;
25using HeuristicLab.Core;
26using HeuristicLab.Data;
27using HeuristicLab.Encodings.BinaryVectorEncoding;
28using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
29
30namespace HeuristicLab.Problems.NK {
31
32  [Item("IncreasingBlockSizeInteractionsInitializer", "Randomly assignes interactions across all bits but makes sure that different numbers of ineractions are applied to different bits.")]
33  [StorableClass]
34  public class IncreasingBlockSizeInteractionsInitializer : ParameterizedNamedItem, IInteractionInitializer {
35
36    [StorableConstructor]
37    protected IncreasingBlockSizeInteractionsInitializer(bool serializing) : base(serializing) { }
38    protected IncreasingBlockSizeInteractionsInitializer(IncreasingBlockSizeInteractionsInitializer original, Cloner cloner) : base(original, cloner) { }
39    public IncreasingBlockSizeInteractionsInitializer() {
40    }
41
42
43    public override IDeepCloneable Clone(Cloner cloner) {
44      return new IncreasingBlockSizeInteractionsInitializer(this, cloner);
45    }
46
47    #region IInteractionInitializer Members
48    public BoolMatrix InitializeInterations(int length, int nComponents, int nInteractions, IRandom random) {
49      Dictionary<int, int> bitInteractionCounts = new Dictionary<int, int>();
50      for (int i = 0; i < length; i++) {
51        int count = nInteractions * 2 * i / length;
52        if (count > 0)
53          bitInteractionCounts[i] = count;
54      }
55      List<BinaryVector> components = new List<BinaryVector>();
56      while (bitInteractionCounts.Count > 0) {
57        BinaryVector component = new BinaryVector(length);
58        for (int i = 0; i < nInteractions; i++) {
59          while (bitInteractionCounts.Count > 0) {
60            int bit = bitInteractionCounts.ElementAt(random.Next(bitInteractionCounts.Count)).Key;
61            if (bitInteractionCounts[bit]-- <= 0)
62              bitInteractionCounts.Remove(bit);
63            if (!component[bit]) {
64              component[bit] = true;
65              break;
66            }
67          }
68        }
69        components.Add(component);
70      }
71      BoolMatrix m = new BoolMatrix(length, components.Count);
72      foreach (var c in components.Select((v, j) => new { v, j })) {
73        for (int i = 0; i < c.v.Length; i++) {
74          m[i, c.j] = c.v[i];
75        }
76      }
77      return m;
78    }
79    #endregion
80  }
81}
Note: See TracBrowser for help on using the repository browser.