Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Analyzers/SymbolicDataAnalysisBottomUpDiversityAnalyzer.cs @ 11927

Last change on this file since 11927 was 11927, checked in by bburlacu, 9 years ago

#1772: Fixed compilation errors and removed leftover similarity calculators, re-added ISymbolicExpressionTreeNodeSimilarityComparer interface and PhenotypicSimilarityCalculator.

File size: 3.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2014 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.Core;
24using HeuristicLab.Data;
25using HeuristicLab.Parameters;
26using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
27
28namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Analyzers {
29  [Item("SymbolicDataAnalysisBottomUpDiversityAnalyzer", "A diversity analyzer based on the bottom-up similarity between trees.")]
30  [StorableClass]
31  public class SymbolicDataAnalysisBottomUpDiversityAnalyzer : SingleObjectivePopulationDiversityAnalyzer {
32    private const string MatchConstantValuesParameterName = "MatchConstantValues";
33    private const string MatchVariableWeightsParameterName = "MatchVariableWeights";
34
35    public IValueParameter<BoolValue> MatchVariableWeightsParameter {
36      get { return (IValueParameter<BoolValue>)Parameters[MatchVariableWeightsParameterName]; }
37    }
38
39    public IValueParameter<BoolValue> MatchConstantValuesParameter {
40      get { return (IValueParameter<BoolValue>)Parameters[MatchConstantValuesParameterName]; }
41    }
42
43    public bool MatchConstantValues {
44      get { return MatchConstantValuesParameter.Value.Value; }
45      set {
46        MatchConstantValuesParameter.Value.Value = value;
47        ((SymbolicExpressionTreeBottomUpSimilarityCalculator)SimilarityCalculator).MatchConstantValues = value;
48      }
49    }
50
51    public bool MatchVariableWeights {
52      get { return MatchVariableWeightsParameter.Value.Value; }
53      set {
54        MatchVariableWeightsParameter.Value.Value = value;
55        ((SymbolicExpressionTreeBottomUpSimilarityCalculator)SimilarityCalculator).MatchVariableWeights = value;
56      }
57    }
58
59    [StorableConstructor]
60    protected SymbolicDataAnalysisBottomUpDiversityAnalyzer(bool deserializing) : base(deserializing) { }
61
62    [StorableHook(HookType.AfterDeserialization)]
63    private void AfterDeserialization() {
64      if (!Parameters.ContainsKey(MatchConstantValuesParameterName))
65        Parameters.Add(new ValueParameter<BoolValue>(MatchConstantValuesParameterName, "Specifies if the similarity calculator should match constant values.", new BoolValue(true)));
66      if (!Parameters.ContainsKey(MatchVariableWeightsParameterName))
67        Parameters.Add(new ValueParameter<BoolValue>(MatchVariableWeightsParameterName, "Specifies if the similarity calculator should match variable weights", new BoolValue(true)));
68    }
69
70    public SymbolicDataAnalysisBottomUpDiversityAnalyzer() {
71      SimilarityCalculator = new SymbolicExpressionTreeBottomUpSimilarityCalculator { SolutionVariableName = "SymbolicExpressionTree" };
72      Parameters.Add(new ValueParameter<BoolValue>(MatchConstantValuesParameterName, "Specifies if the similarity calculator should match constant values.", new BoolValue(true)));
73      Parameters.Add(new ValueParameter<BoolValue>(MatchVariableWeightsParameterName, "Specifies if the similarity calculator should match variable weights", new BoolValue(true)));
74    }
75  }
76}
Note: See TracBrowser for help on using the repository browser.