Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3127-MRGP-VarPro-Exploration/HeuristicLab.Problems.VarProMRGP/3.3/AlleleFrequencyAnalyzer.cs @ 17988

Last change on this file since 17988 was 17988, checked in by gkronber, 3 years ago

#3127: initial import of VarProMRGP implementation (depends on new NativeInterpreter which supports VarPro)

File size: 2.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 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 HeuristicLab.Analysis;
23using HeuristicLab.Common;
24using HeuristicLab.Core;
25using HEAL.Attic;
26using HeuristicLab.Encodings.BinaryVectorEncoding;
27using System.Collections.Generic;
28using HeuristicLab.Data;
29using HeuristicLab.Parameters;
30
31namespace HeuristicLab.Problems.VarProMRGP {
32  [Item("AlleleFrequencyAnalyser", "")]
33  [StorableType("E2D97D01-10DD-4A08-9390-0A3EEB04AE9E")]
34  public sealed class AlleleFrequencyAnalyzer : AlleleFrequencyAnalyzer<BinaryVector> {
35    public ILookupParameter<ReadOnlyItemArray<StringValue>> FeaturesParameter => (ILookupParameter<ReadOnlyItemArray<StringValue>>)Parameters["Features"];
36
37    [StorableConstructor]
38    private AlleleFrequencyAnalyzer(StorableConstructorFlag _) : base(_) { }
39    private AlleleFrequencyAnalyzer(AlleleFrequencyAnalyzer orig, Cloner cloner) : base(orig, cloner) { }
40    public AlleleFrequencyAnalyzer() : base() {
41      Parameters.Add(new LookupParameter<ReadOnlyItemArray<StringValue>>("Features", ""));
42    }
43    public override IDeepCloneable Clone(Cloner cloner) {
44      return new AlleleFrequencyAnalyzer(this, cloner);
45    }
46
47    protected override Allele[] CalculateAlleles(BinaryVector binVector) {
48      var allele = new List<Allele>();
49      var features = FeaturesParameter.ActualValue;
50      for (int i = 0; i < binVector.Length; i++) {
51        if (binVector[i])
52          allele.Add(new Allele(features[i].Value, 0.0));
53      }
54      return allele.ToArray();
55    }
56  }
57}
Note: See TracBrowser for help on using the repository browser.