Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.Orienteering/HeuristicLab.Problems.Orienteering/3.3/Analyzers/BestOrienteeringSolutionAnalyser.cs @ 11240

Last change on this file since 11240 was 11240, checked in by pfleck, 10 years ago

#2208 improved visualization of orienteering solution

File size: 5.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2014 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.IntegerVectorEncoding;
27using HeuristicLab.Operators;
28using HeuristicLab.Optimization;
29using HeuristicLab.Parameters;
30using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
31
32namespace HeuristicLab.Problems.Orienteering {
33  public class BestOrienteeringSolutionAnalyser : SingleSuccessorOperator, IAnalyzer {
34    public virtual bool EnabledByDefault {
35      get { return true; }
36    }
37
38    public IScopeTreeLookupParameter<IntegerVector> IntegerVector {
39      get { return (IScopeTreeLookupParameter<IntegerVector>)Parameters["IntegerVector"]; }
40    }
41    public LookupParameter<DoubleMatrix> CoordinatesParameter {
42      get { return (LookupParameter<DoubleMatrix>)Parameters["Coordinates"]; }
43    }
44    public ILookupParameter<DoubleArray> ScoresParameter {
45      get { return (ILookupParameter<DoubleArray>)Parameters["Scores"]; }
46    }
47
48    public ScopeTreeLookupParameter<DoubleValue> QualityParameter {
49      get { return (ScopeTreeLookupParameter<DoubleValue>)Parameters["Quality"]; }
50    }
51    public LookupParameter<OrienteeringSolution> BestSolutionParameter {
52      get { return (LookupParameter<OrienteeringSolution>)Parameters["BestSolution"]; }
53    }
54    public ValueLookupParameter<ResultCollection> ResultsParameter {
55      get { return (ValueLookupParameter<ResultCollection>)Parameters["Results"]; }
56    }
57    public LookupParameter<DoubleValue> BestKnownQualityParameter {
58      get { return (LookupParameter<DoubleValue>)Parameters["BestKnownQuality"]; }
59    }
60    public LookupParameter<IntegerVector> BestKnownSolutionParameter {
61      get { return (LookupParameter<IntegerVector>)Parameters["BestKnownSolution"]; }
62    }
63
64    [StorableConstructor]
65    private BestOrienteeringSolutionAnalyser(bool deserializing) : base(deserializing) { }
66    private BestOrienteeringSolutionAnalyser(BestOrienteeringSolutionAnalyser original, Cloner cloner) : base(original, cloner) { }
67    public override IDeepCloneable Clone(Cloner cloner) {
68      return new BestOrienteeringSolutionAnalyser(this, cloner);
69    }
70    public BestOrienteeringSolutionAnalyser()
71      : base() {
72      Parameters.Add(new ScopeTreeLookupParameter<IntegerVector>("IntegerVector", "The Orienteering solutions which should be analysed."));
73      Parameters.Add(new LookupParameter<DoubleMatrix>("Coordinates", "The x- and y-Coordinates of the points."));
74      Parameters.Add(new LookupParameter<DoubleArray>("Scores", "The scores of the points."));
75      Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("Quality", "The qualities of the Orienteering solutions which should be analyzed."));
76      Parameters.Add(new LookupParameter<OrienteeringSolution>("BestSolution", "The best Orienteering solution."));
77      Parameters.Add(new ValueLookupParameter<ResultCollection>("Results", "The result collection where the best Orienteering solution should be stored."));
78      Parameters.Add(new LookupParameter<DoubleValue>("BestKnownQuality", "The quality of the best known solution of this Orienteering instance."));
79      Parameters.Add(new LookupParameter<IntegerVector>("BestKnownSolution", "The best known solution of this Orienteering instance."));
80    }
81
82    public override IOperation Apply() {
83      var solutions = IntegerVector.ActualValue;
84      var qualities = QualityParameter.ActualValue;
85      var results = ResultsParameter.ActualValue;
86      var bestKnownQuality = BestKnownQualityParameter.ActualValue;
87
88      int bestIndex = qualities.Select((quality, index) => new { index, quality.Value }).OrderByDescending(x => x.Value).First().index;
89
90      if (bestKnownQuality == null || qualities[bestIndex].Value > bestKnownQuality.Value) {
91        BestKnownQualityParameter.ActualValue = new DoubleValue(qualities[bestIndex].Value);
92        BestKnownSolutionParameter.ActualValue = (IntegerVector)solutions[bestIndex].Clone();
93      }
94
95      var solution = BestSolutionParameter.ActualValue;
96      var coordinates = CoordinatesParameter.ActualValue;
97      var scores = ScoresParameter.ActualValue;
98      if (solution == null) {
99        solution = new OrienteeringSolution(
100          (IntegerVector)solutions[bestIndex].Clone(),
101          coordinates,
102          scores,
103          new DoubleValue(qualities[bestIndex].Value));
104        BestSolutionParameter.ActualValue = solution;
105        results.Add(new Result("Best Orienteering Solution", solution));
106      } else {
107        if (solution.Quality.Value < qualities[bestIndex].Value) {
108          solution.Coordinates = coordinates;
109          solution.Scores = scores;
110          solution.IntegerVector = (IntegerVector)solutions[bestIndex].Clone();
111          solution.Quality.Value = qualities[bestIndex].Value;
112        }
113      }
114
115      return base.Apply();
116    }
117  }
118}
Note: See TracBrowser for help on using the repository browser.