Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2431:

  • Added run collection view
  • Changed name of analyzers
  • Modified algorithms to include Execution Time as a result
File size: 3.6 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("QualityPerClockAnalyzer", @"Creates a plot of the solution quality with respect to the elapsed wall-clock time.")]
33  [StorableClass]
34  public class QualityPerClockAnalyzer : 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
43    public IResultParameter<TimeSpanValue> ExecutionTimeParameter {
44      get { return (IResultParameter<TimeSpanValue>)Parameters["Execution Time"]; }
45    }
46
47    public IResultParameter<IndexedDataTable<double>> QualityPerClockParameter {
48      get { return (IResultParameter<IndexedDataTable<double>>)Parameters["QualityPerClock"]; }
49    }
50
51    [StorableConstructor]
52    protected QualityPerClockAnalyzer(bool deserializing) : base(deserializing) { }
53    protected QualityPerClockAnalyzer(QualityPerClockAnalyzer original, Cloner cloner) : base(original, cloner) { }
54    public QualityPerClockAnalyzer()
55      : base() {
56      Parameters.Add(new LookupParameter<DoubleValue>("BestQuality", "The quality value that should be compared."));
57      Parameters.Add(new ResultParameter<TimeSpanValue>("Execution Time", "The execution time."));
58      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."));
59      QualityPerClockParameter.DefaultValue = new IndexedDataTable<double>("Quality per Clock") {
60        VisualProperties = {
61          XAxisTitle = "Elapsed time [s]",
62          YAxisTitle = "Quality"
63        },
64        Rows = { new IndexedDataRow<double>("First-hit Graph") { VisualProperties = {
65          ChartType = DataRowVisualProperties.DataRowChartType.StepLine,
66          LineWidth = 3
67        } } }
68      };
69    }
70
71    public override IDeepCloneable Clone(Cloner cloner) {
72      return new QualityPerClockAnalyzer(this, cloner);
73    }
74
75    public override IOperation Apply() {
76      var executionTime = Math.Max(ExecutionTimeParameter.ResultValue.Value.TotalSeconds, 0.001);
77      var bestQuality = BestQualityParameter.ActualValue.Value;
78
79      var dataTable = QualityPerClockParameter.ResultValue;
80      dataTable.Rows["First-hit Graph"].Values.Add(Tuple.Create(executionTime, bestQuality));
81
82      return base.Apply();
83    }
84  }
85}
Note: See TracBrowser for help on using the repository browser.