Free cookie consent management tool by TermsFeed Policy Generator

source: branches/RegressionBenchmarks/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Analyzers/SymbolicDataAnalysisAlleleFrequencyAnalyzer.cs @ 7290

Last change on this file since 7290 was 7290, checked in by gkronber, 12 years ago

#1669 merged r7209:7283 from trunk into regression benchmark branch

File size: 4.1 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 System.Linq;
24using System.Text;
25using HeuristicLab.Analysis;
26using HeuristicLab.Common;
27using HeuristicLab.Core;
28using HeuristicLab.Data;
29using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
30using HeuristicLab.Parameters;
31using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
32
33namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
34  [Item("SymbolicDataAnalysisAlleleFrequencyAnalyzer", "")]
35  [StorableClass]
36  public sealed class SymbolicDataAnalysisAlleleFrequencyAnalyzer : AlleleFrequencyAnalyzer<ISymbolicExpressionTree>, ISymbolicDataAnalysisAnalyzer {
37    private const string AlleleTreeDepthParameterName = "AlleleTreeDepth";
38
39    #region parameter properties
40    public IScopeTreeLookupParameter<ISymbolicExpressionTree> SymbolicExpressionTreeParameter {
41      get { return SolutionParameter; }
42    }
43
44    public ILookupParameter<Optimization.ResultCollection> ResultCollectionParameter {
45      get { return ResultsParameter; }
46    }
47
48    public IFixedValueParameter<IntValue> AlleleTreeDepthParameter {
49      get { return (IFixedValueParameter<IntValue>)Parameters[AlleleTreeDepthParameterName]; }
50    }
51    #endregion
52    #region properties
53    public int AlleleTreeDepth {
54      get { return AlleleTreeDepthParameter.Value.Value; }
55      set { AlleleTreeDepthParameter.Value.Value = value; }
56    }
57    #endregion
58
59    [StorableConstructor]
60    private SymbolicDataAnalysisAlleleFrequencyAnalyzer(bool deserializing) : base(deserializing) { }
61    private SymbolicDataAnalysisAlleleFrequencyAnalyzer(SymbolicDataAnalysisAlleleFrequencyAnalyzer original, Cloner cloner) : base(original, cloner) { }
62    public SymbolicDataAnalysisAlleleFrequencyAnalyzer()
63      : base() {
64      Parameters.Add(new FixedValueParameter<IntValue>(AlleleTreeDepthParameterName, "The depth of subtrees that should be considered as allele", new IntValue(2)));
65    }
66
67    public override IDeepCloneable Clone(Cloner cloner) {
68      return new SymbolicDataAnalysisAlleleFrequencyAnalyzer(this, cloner);
69    }
70
71    protected override Allele[] CalculateAlleles(ISymbolicExpressionTree solution) {
72      return GetAllSubtreesOfDepth(solution, AlleleTreeDepth)
73        .AsParallel()
74        .Select(t => GetAlleleFromSubtreeOfDepth(t, AlleleTreeDepth))
75        .ToArray();
76    }
77
78    private Allele GetAlleleFromSubtreeOfDepth(ISymbolicExpressionTreeNode tree, int d) {
79      string textualRepresentation = GetTextualRepresentationFromSubtreeOfDepth(tree, d);
80      return new Allele(textualRepresentation);
81    }
82
83    private string GetTextualRepresentationFromSubtreeOfDepth(ISymbolicExpressionTreeNode tree, int d) {
84      if (d == 0) return "";
85      StringBuilder builder = new StringBuilder();
86      builder.Append("(" + tree.ToString());
87      for (int i = 0; i < tree.SubtreeCount; i++) {
88        builder.Append(" " + GetTextualRepresentationFromSubtreeOfDepth(tree.GetSubtree(i), d - 1));
89      }
90      builder.Append(")");
91      return builder.ToString();
92    }
93
94    private IEnumerable<ISymbolicExpressionTreeNode> GetAllSubtreesOfDepth(ISymbolicExpressionTree solution, int d) {
95      return from node in solution.IterateNodesPostfix()
96             where node.GetDepth() >= d
97             select node;
98    }
99  }
100}
Note: See TracBrowser for help on using the repository browser.