Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PerformanceComparison/HeuristicLab.Analysis/3.3/QualityAnalysis/QualityVsEvaluationsAnalyzer.cs @ 12764

Last change on this file since 12764 was 12764, checked in by abeham, 10 years ago

#2431:

  • branched relevant plugins
  • added analyzer to calculate quality vs evaluation first-hit graph
  • (also added results parameter)
File size: 3.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#endregion
21
22using System;
23using HeuristicLab.Common;
24using HeuristicLab.Core;
25using HeuristicLab.Data;
26using HeuristicLab.Operators;
27using HeuristicLab.Optimization;
28using HeuristicLab.Parameters;
29using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
30
31namespace HeuristicLab.Analysis {
32  [Item("QualityVsEvaluationsAnalyzer", @"Creates a plot of the solution quality with respect to the number of evaluated solutions.")]
33  [StorableClass]
34  public class QualityVsEvaluationsAnalyzer : SingleSuccessorOperator, IAnalyzer, ISingleObjectiveOperator {
35    public virtual bool EnabledByDefault {
36      get { return false; }
37    }
38
39    public ILookupParameter<DoubleValue> BestQualityParameter {
40      get { return (ILookupParameter<DoubleValue>)Parameters["BestQuality"]; }
41    }
42    public ILookupParameter<IntValue> EvaluatedSolutionsParameter {
43      get { return (ILookupParameter<IntValue>)Parameters["EvaluatedSolutions"]; }
44    }
45    public IResultParameter<IndexedDataTable<int>> QualityVsEvaluationsParameter {
46      get { return (IResultParameter<IndexedDataTable<int>>)Parameters["QualityVsEvaluations"]; }
47    }
48
49    [StorableConstructor]
50    protected QualityVsEvaluationsAnalyzer(bool deserializing) : base(deserializing) { }
51    protected QualityVsEvaluationsAnalyzer(QualityVsEvaluationsAnalyzer original, Cloner cloner) : base(original, cloner) { }
52    public QualityVsEvaluationsAnalyzer()
53      : base() {
54      Parameters.Add(new LookupParameter<DoubleValue>("BestQuality", "The quality value that should be compared."));
55      Parameters.Add(new LookupParameter<IntValue>("EvaluatedSolutions", "The quality value that should be compared."));
56      Parameters.Add(new ResultParameter<IndexedDataTable<int>>("QualityVsEvaluations", "Data table containing the first hitting graph with evaluations as the x-axis."));
57      QualityVsEvaluationsParameter.DefaultValue = new IndexedDataTable<int>("Quality vs Evaluations") {
58        Rows = { new IndexedDataRow<int>("First-hit Graph") { VisualProperties = { ChartType = DataRowVisualProperties.DataRowChartType.StepLine } } }
59      };
60    }
61
62    public override IDeepCloneable Clone(Cloner cloner) {
63      return new QualityVsEvaluationsAnalyzer(this, cloner);
64    }
65
66    public override IOperation Apply() {
67      var bestQuality = BestQualityParameter.ActualValue.Value;
68      var evaluations = EvaluatedSolutionsParameter.ActualValue.Value;
69
70      var dataTable = QualityVsEvaluationsParameter.ResultValue;
71      dataTable.Rows["First-hit Graph"].Values.Add(Tuple.Create(evaluations, bestQuality));
72
73      return base.Apply();
74    }
75  }
76}
Note: See TracBrowser for help on using the repository browser.