[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 |
|
---|
| 22 | using HeuristicLab.Core;
|
---|
| 23 | using HeuristicLab.Data;
|
---|
| 24 | using HeuristicLab.Operators;
|
---|
| 25 | using HeuristicLab.Parameters;
|
---|
| 26 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 27 |
|
---|
| 28 | namespace HeuristicLab.Analysis {
|
---|
| 29 | /// <summary>
|
---|
[3662] | 30 | /// An operator which calculates the best, average and worst quality of solutions in the scope tree.
|
---|
[2891] | 31 | /// </summary>
|
---|
[3662] | 32 | [Item("BestAverageWorstQualityCalculator", "An operator which calculates the best, average and worst quality of solutions in the scope tree.")]
|
---|
[3017] | 33 | [StorableClass]
|
---|
[2891] | 34 | public sealed class BestAverageWorstQualityCalculator : SingleSuccessorOperator {
|
---|
[3662] | 35 | public ValueLookupParameter<BoolValue> MaximizationParameter {
|
---|
| 36 | get { return (ValueLookupParameter<BoolValue>)Parameters["Maximization"]; }
|
---|
[2891] | 37 | }
|
---|
[3662] | 38 | public ScopeTreeLookupParameter<DoubleValue> QualityParameter {
|
---|
| 39 | get { return (ScopeTreeLookupParameter<DoubleValue>)Parameters["Quality"]; }
|
---|
[2891] | 40 | }
|
---|
[3662] | 41 | public ValueLookupParameter<DoubleValue> BestQualityParameter {
|
---|
| 42 | get { return (ValueLookupParameter<DoubleValue>)Parameters["BestQuality"]; }
|
---|
[2891] | 43 | }
|
---|
[3662] | 44 | public ValueLookupParameter<DoubleValue> AverageQualityParameter {
|
---|
| 45 | get { return (ValueLookupParameter<DoubleValue>)Parameters["AverageQuality"]; }
|
---|
[2891] | 46 | }
|
---|
[3662] | 47 | public ValueLookupParameter<DoubleValue> WorstQualityParameter {
|
---|
| 48 | get { return (ValueLookupParameter<DoubleValue>)Parameters["WorstQuality"]; }
|
---|
[2891] | 49 | }
|
---|
| 50 |
|
---|
| 51 | public BestAverageWorstQualityCalculator()
|
---|
| 52 | : base() {
|
---|
[3048] | 53 | Parameters.Add(new ValueLookupParameter<BoolValue>("Maximization", "True if the current problem is a maximization problem, otherwise false."));
|
---|
[3662] | 54 | Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("Quality", "The value contained in the scope tree which represents the solution quality."));
|
---|
[3048] | 55 | Parameters.Add(new ValueLookupParameter<DoubleValue>("BestQuality", "The quality value of the best solution."));
|
---|
| 56 | Parameters.Add(new ValueLookupParameter<DoubleValue>("AverageQuality", "The average quality of all solutions."));
|
---|
| 57 | Parameters.Add(new ValueLookupParameter<DoubleValue>("WorstQuality", "The quality value of the worst solution."));
|
---|
[2891] | 58 | }
|
---|
| 59 |
|
---|
| 60 |
|
---|
| 61 | public override IOperation Apply() {
|
---|
[3048] | 62 | ItemArray<DoubleValue> qualities = QualityParameter.ActualValue;
|
---|
[2891] | 63 | bool maximization = MaximizationParameter.ActualValue.Value;
|
---|
| 64 |
|
---|
| 65 | if (qualities.Length > 0) {
|
---|
| 66 | double min = double.MaxValue, max = double.MinValue, sum = 0.0;
|
---|
| 67 | for (int i = 0; i < qualities.Length; i++) {
|
---|
| 68 | if (qualities[i].Value < min) min = qualities[i].Value;
|
---|
| 69 | if (qualities[i].Value > max) max = qualities[i].Value;
|
---|
| 70 | sum += qualities[i].Value;
|
---|
| 71 | }
|
---|
| 72 | if (!maximization) {
|
---|
| 73 | double temp = min;
|
---|
| 74 | min = max;
|
---|
| 75 | max = temp;
|
---|
| 76 | }
|
---|
[2924] | 77 |
|
---|
[3048] | 78 | DoubleValue best = BestQualityParameter.ActualValue;
|
---|
| 79 | if (best == null) BestQualityParameter.ActualValue = new DoubleValue(max);
|
---|
[2924] | 80 | else best.Value = max;
|
---|
[3048] | 81 | DoubleValue average = AverageQualityParameter.ActualValue;
|
---|
| 82 | if (average == null) AverageQualityParameter.ActualValue = new DoubleValue(sum / qualities.Length);
|
---|
[2924] | 83 | else average.Value = sum / qualities.Length;
|
---|
[3048] | 84 | DoubleValue worst = WorstQualityParameter.ActualValue;
|
---|
| 85 | if (worst == null) WorstQualityParameter.ActualValue = new DoubleValue(min);
|
---|
[2924] | 86 | else worst.Value = min;
|
---|
[2891] | 87 | }
|
---|
| 88 | return base.Apply();
|
---|
| 89 | }
|
---|
| 90 | }
|
---|
| 91 | }
|
---|