Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PersistenceOverhaul/HeuristicLab.Problems.GrammaticalEvolution/3.4/SymbolicRegression/GESymbolicRegressionSingleObjectiveEvaluator.cs @ 14711

Last change on this file since 14711 was 14711, checked in by gkronber, 7 years ago

#2520

  • renamed StorableClass -> StorableType
  • changed persistence to use GUIDs instead of type names
File size: 4.4 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 * Author: Sabine Winkler
21 */
22
23#endregion
24
25using HeuristicLab.Common;
26using HeuristicLab.Core;
27using HeuristicLab.Data;
28using HeuristicLab.Parameters;
29using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
30using HeuristicLab.Problems.DataAnalysis;
31using HeuristicLab.Problems.DataAnalysis.Symbolic.Regression;
32
33namespace HeuristicLab.Problems.GrammaticalEvolution {
34  [StorableType("8E8968F0-EB67-4792-B7B6-859F2010B4DE")]
35  public class GESymbolicRegressionSingleObjectiveEvaluator : GESymbolicDataAnalysisSingleObjectiveEvaluator<IRegressionProblemData>,
36                                                              IGESymbolicRegressionSingleObjectiveEvaluator {
37
38    public const string EvaluatorParameterName = "Evaluator";
39    public const string RandomParameterName = "Random";
40    public const string BoundsParameterName = "Bounds";
41    public const string MaximumSymbolicExpressionTreeLengthParameterName = "MaximumSymbolicExpressionTreeLength";
42
43    public IValueParameter<ISymbolicRegressionSingleObjectiveEvaluator> EvaluatorParameter {
44      get { return (IValueParameter<ISymbolicRegressionSingleObjectiveEvaluator>)Parameters[EvaluatorParameterName]; }
45    }
46    public ILookupParameter<IntMatrix> BoundsParameter {
47      get { return (ILookupParameter<IntMatrix>)Parameters[BoundsParameterName]; }
48    }
49    public ILookupParameter<IntValue> MaximumSymbolicExpressionTreeLengthParameter {
50      get { return (ILookupParameter<IntValue>)Parameters[MaximumSymbolicExpressionTreeLengthParameterName]; }
51    }
52
53    public ISymbolicRegressionSingleObjectiveEvaluator Evaluator {
54      get { return EvaluatorParameter.Value; }
55    }
56
57
58    [StorableConstructor]
59    protected GESymbolicRegressionSingleObjectiveEvaluator(bool deserializing) : base(deserializing) { }
60    protected GESymbolicRegressionSingleObjectiveEvaluator(GESymbolicRegressionSingleObjectiveEvaluator original, Cloner cloner) : base(original, cloner) { }
61    public GESymbolicRegressionSingleObjectiveEvaluator()
62      : base() {
63      Parameters.Add(new ValueParameter<ISymbolicRegressionSingleObjectiveEvaluator>(EvaluatorParameterName, "The symbolic regression evaluator that should be used to assess the quality of trees.", new SymbolicRegressionSingleObjectivePearsonRSquaredEvaluator()));
64      Parameters.Add(new LookupParameter<IntMatrix>(BoundsParameterName, "The integer number range in which the single genomes of a genotype are created."));
65      Parameters.Add(new LookupParameter<IntValue>(MaximumSymbolicExpressionTreeLengthParameterName, "Genotype length."));
66    }
67
68    public override IDeepCloneable Clone(Cloner cloner) {
69      return new GESymbolicRegressionSingleObjectiveEvaluator(this, cloner);
70    }
71
72    public override bool Maximization {
73      get { return Evaluator.Maximization; }
74    }
75
76    public override IOperation Apply() {
77      var genotype = IntegerVectorParameter.ActualValue;
78
79      // translate to phenotype
80      var tree = GenotypeToPhenotypeMapperParameter.ActualValue.Map(
81        RandomParameter.ActualValue,
82        BoundsParameter.ActualValue,
83        MaximumSymbolicExpressionTreeLengthParameter.ActualValue.Value,
84        SymbolicExpressionTreeGrammarParameter.ActualValue,
85        genotype
86      );
87      SymbolicExpressionTreeParameter.ActualValue = tree; // write to scope for analyzers
88
89      // create operation for evaluation
90      var evalOp = ExecutionContext.CreateChildOperation(Evaluator);
91      var successorOp = base.Apply();
92
93      return new OperationCollection(evalOp, successorOp);
94    }
95  }
96}
Note: See TracBrowser for help on using the repository browser.