Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Analysis/3.3/BestAverageWorstQualityCalculator.cs @ 4765

Last change on this file since 4765 was 4722, checked in by swagner, 14 years ago

Merged cloning refactoring branch back into trunk (#922)

File size: 4.7 KB
RevLine 
[2891]1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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
[4722]22using HeuristicLab.Common;
[2891]23using HeuristicLab.Core;
24using HeuristicLab.Data;
25using HeuristicLab.Operators;
26using HeuristicLab.Parameters;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28
29namespace HeuristicLab.Analysis {
30  /// <summary>
[3662]31  /// An operator which calculates the best, average and worst quality of solutions in the scope tree.
[2891]32  /// </summary>
[3662]33  [Item("BestAverageWorstQualityCalculator", "An operator which calculates the best, average and worst quality of solutions in the scope tree.")]
[3017]34  [StorableClass]
[2891]35  public sealed class BestAverageWorstQualityCalculator : SingleSuccessorOperator {
[3662]36    public ValueLookupParameter<BoolValue> MaximizationParameter {
37      get { return (ValueLookupParameter<BoolValue>)Parameters["Maximization"]; }
[2891]38    }
[3662]39    public ScopeTreeLookupParameter<DoubleValue> QualityParameter {
40      get { return (ScopeTreeLookupParameter<DoubleValue>)Parameters["Quality"]; }
[2891]41    }
[3662]42    public ValueLookupParameter<DoubleValue> BestQualityParameter {
43      get { return (ValueLookupParameter<DoubleValue>)Parameters["BestQuality"]; }
[2891]44    }
[3662]45    public ValueLookupParameter<DoubleValue> AverageQualityParameter {
46      get { return (ValueLookupParameter<DoubleValue>)Parameters["AverageQuality"]; }
[2891]47    }
[3662]48    public ValueLookupParameter<DoubleValue> WorstQualityParameter {
49      get { return (ValueLookupParameter<DoubleValue>)Parameters["WorstQuality"]; }
[2891]50    }
51
[4722]52    #region Storing & Cloning
53    [StorableConstructor]
54    private BestAverageWorstQualityCalculator(bool deserializing) : base(deserializing) { }
55    private BestAverageWorstQualityCalculator(BestAverageWorstQualityCalculator original, Cloner cloner) : base(original, cloner) { }
56    public override IDeepCloneable Clone(Cloner cloner) {
57      return new BestAverageWorstQualityCalculator(this, cloner);
58    }
59    #endregion
[2891]60    public BestAverageWorstQualityCalculator()
61      : base() {
[3048]62      Parameters.Add(new ValueLookupParameter<BoolValue>("Maximization", "True if the current problem is a maximization problem, otherwise false."));
[3662]63      Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("Quality", "The value contained in the scope tree which represents the solution quality."));
[3048]64      Parameters.Add(new ValueLookupParameter<DoubleValue>("BestQuality", "The quality value of the best solution."));
65      Parameters.Add(new ValueLookupParameter<DoubleValue>("AverageQuality", "The average quality of all solutions."));
66      Parameters.Add(new ValueLookupParameter<DoubleValue>("WorstQuality", "The quality value of the worst solution."));
[2891]67    }
68
69
70    public override IOperation Apply() {
[3048]71      ItemArray<DoubleValue> qualities = QualityParameter.ActualValue;
[2891]72      bool maximization = MaximizationParameter.ActualValue.Value;
73
74      if (qualities.Length > 0) {
75        double min = double.MaxValue, max = double.MinValue, sum = 0.0;
76        for (int i = 0; i < qualities.Length; i++) {
77          if (qualities[i].Value < min) min = qualities[i].Value;
78          if (qualities[i].Value > max) max = qualities[i].Value;
79          sum += qualities[i].Value;
80        }
81        if (!maximization) {
82          double temp = min;
83          min = max;
84          max = temp;
85        }
[2924]86
[3048]87        DoubleValue best = BestQualityParameter.ActualValue;
88        if (best == null) BestQualityParameter.ActualValue = new DoubleValue(max);
[2924]89        else best.Value = max;
[3048]90        DoubleValue average = AverageQualityParameter.ActualValue;
91        if (average == null) AverageQualityParameter.ActualValue = new DoubleValue(sum / qualities.Length);
[2924]92        else average.Value = sum / qualities.Length;
[3048]93        DoubleValue worst = WorstQualityParameter.ActualValue;
94        if (worst == null) WorstQualityParameter.ActualValue = new DoubleValue(min);
[2924]95        else worst.Value = min;
[2891]96      }
97      return base.Apply();
98    }
99  }
100}
Note: See TracBrowser for help on using the repository browser.