Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2208

  • Added missing PluginDependencies.
  • Sealed some classes.
File size: 6.3 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 sealed class BestOrienteeringSolutionAnalyser : SingleSuccessorOperator, IAnalyzer {
34    public 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<IntValue> StartingPointParameter {
45      get { return (ILookupParameter<IntValue>)Parameters["StartingPoint"]; }
46    }
47    public ILookupParameter<IntValue> TerminusPointParameter {
48      get { return (ILookupParameter<IntValue>)Parameters["TerminusPoint"]; }
49    }
50    public ILookupParameter<DoubleArray> ScoresParameter {
51      get { return (ILookupParameter<DoubleArray>)Parameters["Scores"]; }
52    }
53
54    public ScopeTreeLookupParameter<DoubleValue> QualityParameter {
55      get { return (ScopeTreeLookupParameter<DoubleValue>)Parameters["Quality"]; }
56    }
57    public LookupParameter<OrienteeringSolution> BestSolutionParameter {
58      get { return (LookupParameter<OrienteeringSolution>)Parameters["BestSolution"]; }
59    }
60    public ValueLookupParameter<ResultCollection> ResultsParameter {
61      get { return (ValueLookupParameter<ResultCollection>)Parameters["Results"]; }
62    }
63    public LookupParameter<DoubleValue> BestKnownQualityParameter {
64      get { return (LookupParameter<DoubleValue>)Parameters["BestKnownQuality"]; }
65    }
66    public LookupParameter<IntegerVector> BestKnownSolutionParameter {
67      get { return (LookupParameter<IntegerVector>)Parameters["BestKnownSolution"]; }
68    }
69
70    [StorableConstructor]
71    private BestOrienteeringSolutionAnalyser(bool deserializing) : base(deserializing) { }
72    private BestOrienteeringSolutionAnalyser(BestOrienteeringSolutionAnalyser original, Cloner cloner) : base(original, cloner) { }
73    public override IDeepCloneable Clone(Cloner cloner) {
74      return new BestOrienteeringSolutionAnalyser(this, cloner);
75    }
76    public BestOrienteeringSolutionAnalyser()
77      : base() {
78      Parameters.Add(new ScopeTreeLookupParameter<IntegerVector>("IntegerVector", "The Orienteering solutions which should be analysed."));
79      Parameters.Add(new LookupParameter<DoubleMatrix>("Coordinates", "The x- and y-Coordinates of the points."));
80      Parameters.Add(new LookupParameter<IntValue>("StartingPoint", "Index of the starting point."));
81      Parameters.Add(new LookupParameter<IntValue>("TerminusPoint", "Index of the ending point."));
82      Parameters.Add(new LookupParameter<DoubleArray>("Scores", "The scores of the points."));
83      Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("Quality", "The qualities of the Orienteering solutions which should be analyzed."));
84      Parameters.Add(new LookupParameter<OrienteeringSolution>("BestSolution", "The best Orienteering solution."));
85      Parameters.Add(new ValueLookupParameter<ResultCollection>("Results", "The result collection where the best Orienteering solution should be stored."));
86      Parameters.Add(new LookupParameter<DoubleValue>("BestKnownQuality", "The quality of the best known solution of this Orienteering instance."));
87      Parameters.Add(new LookupParameter<IntegerVector>("BestKnownSolution", "The best known solution of this Orienteering instance."));
88    }
89
90    public override IOperation Apply() {
91      var solutions = IntegerVector.ActualValue;
92      var qualities = QualityParameter.ActualValue;
93      var results = ResultsParameter.ActualValue;
94      var bestKnownQuality = BestKnownQualityParameter.ActualValue;
95
96      int bestIndex = qualities.Select((quality, index) => new { index, quality.Value }).OrderByDescending(x => x.Value).First().index;
97
98      if (bestKnownQuality == null || qualities[bestIndex].Value > bestKnownQuality.Value) {
99        BestKnownQualityParameter.ActualValue = new DoubleValue(qualities[bestIndex].Value);
100        BestKnownSolutionParameter.ActualValue = (IntegerVector)solutions[bestIndex].Clone();
101      }
102
103      var solution = BestSolutionParameter.ActualValue;
104      var coordinates = CoordinatesParameter.ActualValue;
105      var startingPoint = StartingPointParameter.ActualValue;
106      var terminusPoint = TerminusPointParameter.ActualValue;
107      var scores = ScoresParameter.ActualValue;
108      if (solution == null) {
109        solution = new OrienteeringSolution(
110          (IntegerVector)solutions[bestIndex].Clone(),
111          coordinates,
112          startingPoint,
113          terminusPoint,
114          scores,
115          new DoubleValue(qualities[bestIndex].Value));
116        BestSolutionParameter.ActualValue = solution;
117        results.Add(new Result("Best Orienteering Solution", solution));
118      } else {
119        if (solution.Quality.Value < qualities[bestIndex].Value) {
120          solution.Coordinates = coordinates;
121          solution.Scores = scores;
122          solution.IntegerVector = (IntegerVector)solutions[bestIndex].Clone();
123          solution.Quality.Value = qualities[bestIndex].Value;
124        }
125      }
126
127      return base.Apply();
128    }
129  }
130}
Note: See TracBrowser for help on using the repository browser.