Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.DataAnalysis.Trading/3.4/Symbolic/SingleObjective/TrainingBestSolutionAnalyzer.cs @ 15583

Last change on this file since 15583 was 15583, checked in by swagner, 6 years ago

#2640: Updated year of copyrights in license headers

File size: 3.5 KB
RevLine 
[6123]1#region License Information
2/* HeuristicLab
[15583]3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[6123]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.Common;
23using HeuristicLab.Core;
24using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
25using HeuristicLab.Parameters;
26using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
[9822]27using HeuristicLab.Problems.DataAnalysis.Symbolic;
[6123]28
[9822]29namespace HeuristicLab.Problems.DataAnalysis.Trading.Symbolic {
[6123]30  /// <summary>
31  /// An operator that analyzes the training best symbolic trading solution for single objective symbolic trading problems.
32  /// </summary>
[9745]33  [Item("Training-best Solution Analyzer (symbolic trading)", "An operator that analyzes the training best symbolic trading solution for single objective symbolic trading problems.")]
[6123]34  [StorableClass]
[9745]35  public sealed class TrainingBestSolutionAnalyzer : SymbolicDataAnalysisSingleObjectiveTrainingBestSolutionAnalyzer<ISolution>,
[6123]36  ISymbolicDataAnalysisInterpreterOperator {
37    private const string ProblemDataParameterName = "ProblemData";
38    private const string SymbolicDataAnalysisTreeInterpreterParameterName = "SymbolicDataAnalysisTreeInterpreter";
39    #region parameter properties
[9745]40    public ILookupParameter<IProblemData> ProblemDataParameter {
41      get { return (ILookupParameter<IProblemData>)Parameters[ProblemDataParameterName]; }
[6123]42    }
43    public ILookupParameter<ISymbolicDataAnalysisExpressionTreeInterpreter> SymbolicDataAnalysisTreeInterpreterParameter {
44      get { return (ILookupParameter<ISymbolicDataAnalysisExpressionTreeInterpreter>)Parameters[SymbolicDataAnalysisTreeInterpreterParameterName]; }
45    }
46    #endregion
47
48    [StorableConstructor]
[9745]49    private TrainingBestSolutionAnalyzer(bool deserializing) : base(deserializing) { }
50    private TrainingBestSolutionAnalyzer(TrainingBestSolutionAnalyzer original, Cloner cloner) : base(original, cloner) { }
51    public TrainingBestSolutionAnalyzer()
[6123]52      : base() {
[9745]53      Parameters.Add(new LookupParameter<IProblemData>(ProblemDataParameterName, "The problem data for the symbolic regression solution."));
[6123]54      Parameters.Add(new LookupParameter<ISymbolicDataAnalysisExpressionTreeInterpreter>(SymbolicDataAnalysisTreeInterpreterParameterName, "The symbolic data analysis tree interpreter for the symbolic expression tree."));
55    }
56    public override IDeepCloneable Clone(Cloner cloner) {
[9745]57      return new TrainingBestSolutionAnalyzer(this, cloner);
[6123]58    }
59
[9745]60    protected override ISolution CreateSolution(ISymbolicExpressionTree bestTree, double bestQuality) {
61      var model = new Model((ISymbolicExpressionTree)bestTree.Clone(), SymbolicDataAnalysisTreeInterpreterParameter.ActualValue);
62      return new SymbolicSolution(model, (IProblemData)ProblemDataParameter.ActualValue.Clone());
[6123]63    }
64  }
65}
Note: See TracBrowser for help on using the repository browser.