Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.TimeSeries/HeuristicLab.Problems.OneMax/3.3/Analyzers/BestOneMaxSolutionAnalyzer.cs @ 7213

Last change on this file since 7213 was 7213, checked in by gkronber, 12 years ago

#1081 merged r7103:7209 from trunk into time series branch

File size: 5.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2011 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.Linq;
23using HeuristicLab.Common;
24using HeuristicLab.Core;
25using HeuristicLab.Data;
26using HeuristicLab.Encodings.BinaryVectorEncoding;
27using HeuristicLab.Operators;
28using HeuristicLab.Optimization;
29using HeuristicLab.Parameters;
30using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
31
32namespace HeuristicLab.Problems.OneMax {
33  /// <summary>
34  /// An operator for analyzing the best solution for a OneMax problem.
35  /// </summary>
36  [Item("BestOneMaxSolutionAnalyzer", "An operator for analyzing the best solution for a OneMax problem.")]
37  [StorableClass]
38  public class BestOneMaxSolutionAnalyzer : SingleSuccessorOperator, IAnalyzer {
39    public virtual bool EnabledByDefault {
40      get { return true; }
41    }
42
43    public LookupParameter<BoolValue> MaximizationParameter {
44      get { return (LookupParameter<BoolValue>)Parameters["Maximization"]; }
45    }
46    public ScopeTreeLookupParameter<BinaryVector> BinaryVectorParameter {
47      get { return (ScopeTreeLookupParameter<BinaryVector>)Parameters["BinaryVector"]; }
48    }
49    public ScopeTreeLookupParameter<DoubleValue> QualityParameter {
50      get { return (ScopeTreeLookupParameter<DoubleValue>)Parameters["Quality"]; }
51    }
52    public LookupParameter<OneMaxSolution> BestSolutionParameter {
53      get { return (LookupParameter<OneMaxSolution>)Parameters["BestSolution"]; }
54    }
55    public ValueLookupParameter<ResultCollection> ResultsParameter {
56      get { return (ValueLookupParameter<ResultCollection>)Parameters["Results"]; }
57    }
58    public LookupParameter<DoubleValue> BestKnownQualityParameter {
59      get { return (LookupParameter<DoubleValue>)Parameters["BestKnownQuality"]; }
60    }
61
62    [StorableConstructor]
63    protected BestOneMaxSolutionAnalyzer(bool deserializing) : base(deserializing) { }
64    protected BestOneMaxSolutionAnalyzer(BestOneMaxSolutionAnalyzer original, Cloner cloner) : base(original, cloner) { }
65    public BestOneMaxSolutionAnalyzer()
66      : base() {
67      Parameters.Add(new LookupParameter<BoolValue>("Maximization", "True if the problem is a maximization problem."));
68      Parameters.Add(new ScopeTreeLookupParameter<BinaryVector>("BinaryVector", "The Onemax solutions from which the best solution should be visualized."));
69      Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("Quality", "The qualities of the Onemax solutions which should be visualized."));
70      Parameters.Add(new LookupParameter<OneMaxSolution>("BestSolution", "The best Onemax solution."));
71      Parameters.Add(new ValueLookupParameter<ResultCollection>("Results", "The result collection where the Onemax solution should be stored."));
72      Parameters.Add(new LookupParameter<DoubleValue>("BestKnownQuality", "The quality of the best known solution."));
73    }
74
75    public override IDeepCloneable Clone(Cloner cloner) {
76      return new BestOneMaxSolutionAnalyzer(this, cloner);
77    }
78
79    public override IOperation Apply() {
80      ItemArray<BinaryVector> binaryVectors = BinaryVectorParameter.ActualValue;
81      ItemArray<DoubleValue> qualities = QualityParameter.ActualValue;
82      ResultCollection results = ResultsParameter.ActualValue;
83      bool max = MaximizationParameter.ActualValue.Value;
84      DoubleValue bestKnownQuality = BestKnownQualityParameter.ActualValue;
85
86      int i = -1;
87      if (!max)
88        i = qualities.Select((x, index) => new { index, x.Value }).OrderBy(x => x.Value).First().index;
89      else i = qualities.Select((x, index) => new { index, x.Value }).OrderByDescending(x => x.Value).First().index;
90
91      if (bestKnownQuality == null ||
92          max && qualities[i].Value > bestKnownQuality.Value ||
93          !max && qualities[i].Value < bestKnownQuality.Value) {
94        BestKnownQualityParameter.ActualValue = new DoubleValue(qualities[i].Value);
95      }
96
97      OneMaxSolution solution = BestSolutionParameter.ActualValue;
98      if (solution == null) {
99        solution = new OneMaxSolution((BinaryVector)binaryVectors[i].Clone(), new DoubleValue(qualities[i].Value));
100        BestSolutionParameter.ActualValue = solution;
101        results.Add(new Result("Best OneMax Solution", solution));
102      } else {
103        if (max && qualities[i].Value > solution.Quality.Value ||
104          !max && qualities[i].Value < solution.Quality.Value) {
105          solution.BinaryVector = (BinaryVector)binaryVectors[i].Clone();
106          solution.Quality = new DoubleValue(qualities[i].Value);
107        }
108      }
109
110      return base.Apply();
111    }
112  }
113}
Note: See TracBrowser for help on using the repository browser.