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 |
|
---|
22 | using HeuristicLab.Analysis;
|
---|
23 | using HeuristicLab.Common;
|
---|
24 | using HeuristicLab.Core;
|
---|
25 | using HEAL.Attic;
|
---|
26 | using HeuristicLab.Encodings.BinaryVectorEncoding;
|
---|
27 | using System.Collections.Generic;
|
---|
28 | using HeuristicLab.Data;
|
---|
29 | using HeuristicLab.Parameters;
|
---|
30 |
|
---|
31 | namespace 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 | }
|
---|