Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PerformanceComparison/HeuristicLab.Analysis/3.3/QualityAnalysis/QualityPerClockAnalyzer.cs @ 12774

Last change on this file since 12774 was 12774, checked in by abeham, 9 years ago

#2431: minor improvements

File size: 3.7 KB
RevLine 
[6615]1#region License Information
2/* HeuristicLab
[12012]3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[6615]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
[12764]22using System;
[12774]23using System.Linq;
[6615]24using HeuristicLab.Common;
25using HeuristicLab.Core;
26using HeuristicLab.Data;
27using HeuristicLab.Operators;
28using HeuristicLab.Optimization;
29using HeuristicLab.Parameters;
30using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
31
[12764]32namespace HeuristicLab.Analysis {
[12771]33  [Item("QualityPerClockAnalyzer", @"Creates a plot of the solution quality with respect to the elapsed wall-clock time.")]
[6615]34  [StorableClass]
[12771]35  public class QualityPerClockAnalyzer : SingleSuccessorOperator, IAnalyzer, ISingleObjectiveOperator {
[7172]36    public virtual bool EnabledByDefault {
[12764]37      get { return false; }
[7172]38    }
39
[12764]40    public ILookupParameter<DoubleValue> BestQualityParameter {
41      get { return (ILookupParameter<DoubleValue>)Parameters["BestQuality"]; }
[6615]42    }
[12771]43
44    public IResultParameter<TimeSpanValue> ExecutionTimeParameter {
45      get { return (IResultParameter<TimeSpanValue>)Parameters["Execution Time"]; }
[6615]46    }
[12771]47
48    public IResultParameter<IndexedDataTable<double>> QualityPerClockParameter {
49      get { return (IResultParameter<IndexedDataTable<double>>)Parameters["QualityPerClock"]; }
[6615]50    }
51
52    [StorableConstructor]
[12771]53    protected QualityPerClockAnalyzer(bool deserializing) : base(deserializing) { }
54    protected QualityPerClockAnalyzer(QualityPerClockAnalyzer original, Cloner cloner) : base(original, cloner) { }
55    public QualityPerClockAnalyzer()
[6615]56      : base() {
[12764]57      Parameters.Add(new LookupParameter<DoubleValue>("BestQuality", "The quality value that should be compared."));
[12771]58      Parameters.Add(new ResultParameter<TimeSpanValue>("Execution Time", "The execution time."));
59      Parameters.Add(new ResultParameter<IndexedDataTable<double>>("QualityPerClock", "Data table containing the first hitting graph with elapsed wall clock time (in seconds) as the x-axis."));
60      QualityPerClockParameter.DefaultValue = new IndexedDataTable<double>("Quality per Clock") {
61        VisualProperties = {
62          XAxisTitle = "Elapsed time [s]",
63          YAxisTitle = "Quality"
64        },
65        Rows = { new IndexedDataRow<double>("First-hit Graph") { VisualProperties = {
66          ChartType = DataRowVisualProperties.DataRowChartType.StepLine,
67          LineWidth = 3
68        } } }
[12764]69      };
[6615]70    }
71
72    public override IDeepCloneable Clone(Cloner cloner) {
[12771]73      return new QualityPerClockAnalyzer(this, cloner);
[6615]74    }
75
76    public override IOperation Apply() {
[12774]77      var executionTime = Math.Max(ExecutionTimeParameter.ResultValue.Value.TotalSeconds, 0.2);
[12764]78      var bestQuality = BestQualityParameter.ActualValue.Value;
[6615]79
[12771]80      var dataTable = QualityPerClockParameter.ResultValue;
[12774]81      var values = dataTable.Rows["First-hit Graph"].Values;
82      if (values.Count == 0 || values.Last().Item2 != bestQuality)
83        dataTable.Rows["First-hit Graph"].Values.Add(Tuple.Create(executionTime, bestQuality));
[6615]84
85      return base.Apply();
86    }
87  }
88}
Note: See TracBrowser for help on using the repository browser.