Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression/3.4/SymbolicRegressionSolution.cs @ 6319

Last change on this file since 6319 was 6233, checked in by mkommend, 13 years ago

#1532:

  • Enabled renaming of symbols
  • Fixed cloning of grammers
  • Added readonly attribute in grammars to lock grammars during the algorithm run
  • Removed useless clone method in cloner
  • Changed CheckedItemCollectionViews to enable scrolling during the locked state
File size: 3.4 KB
RevLine 
[5607]1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2011 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
[5914]22using System;
[5607]23using HeuristicLab.Common;
24using HeuristicLab.Core;
25using HeuristicLab.Data;
[5914]26using HeuristicLab.Optimization;
[5607]27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28
[5624]29namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Regression {
[5607]30  /// <summary>
31  /// Represents a symbolic regression solution (model + data) and attributes of the solution like accuracy and complexity
32  /// </summary>
33  [StorableClass]
34  [Item(Name = "SymbolicRegressionSolution", Description = "Represents a symbolic regression solution (model + data) and attributes of the solution like accuracy and complexity.")]
[5717]35  public sealed class SymbolicRegressionSolution : RegressionSolution, ISymbolicRegressionSolution {
[5975]36    private const string ModelLengthResultName = "Model Length";
37    private const string ModelDepthResultName = "Model Depth";
[5736]38
[5624]39    public new ISymbolicRegressionModel Model {
40      get { return (ISymbolicRegressionModel)base.Model; }
[5717]41      set { base.Model = value; }
[5607]42    }
[5624]43    ISymbolicDataAnalysisModel ISymbolicDataAnalysisSolution.Model {
44      get { return (ISymbolicDataAnalysisModel)base.Model; }
[5607]45    }
[5736]46    public int ModelLength {
47      get { return ((IntValue)this[ModelLengthResultName].Value).Value; }
48      private set { ((IntValue)this[ModelLengthResultName].Value).Value = value; }
49    }
[5607]50
[5736]51    public int ModelDepth {
52      get { return ((IntValue)this[ModelDepthResultName].Value).Value; }
53      private set { ((IntValue)this[ModelDepthResultName].Value).Value = value; }
54    }
55
[5607]56    [StorableConstructor]
[5717]57    private SymbolicRegressionSolution(bool deserializing) : base(deserializing) { }
58    private SymbolicRegressionSolution(SymbolicRegressionSolution original, Cloner cloner)
[5607]59      : base(original, cloner) {
60    }
[5624]61    public SymbolicRegressionSolution(ISymbolicRegressionModel model, IRegressionProblemData problemData)
62      : base(model, problemData) {
[5736]63      Add(new Result(ModelLengthResultName, "Length of the symbolic regression model.", new IntValue()));
64      Add(new Result(ModelDepthResultName, "Depth of the symbolic regression model.", new IntValue()));
65      RecalculateResults();
[5607]66    }
67
68    public override IDeepCloneable Clone(Cloner cloner) {
69      return new SymbolicRegressionSolution(this, cloner);
70    }
[5729]71
[5736]72    protected override void OnModelChanged(EventArgs e) {
73      base.OnModelChanged(e);
74      RecalculateResults();
75    }
76
[6233]77    private void RecalculateResults() {
[5736]78      ModelLength = Model.SymbolicExpressionTree.Length;
79      ModelDepth = Model.SymbolicExpressionTree.Depth;
80    }
[5607]81  }
82}
Note: See TracBrowser for help on using the repository browser.