Free cookie consent management tool by TermsFeed Policy Generator

source: branches/MemPRAlgorithm/HeuristicLab.Problems.TravelingSalesman/3.3/Analyzers/BestTSPSolutionAnalyzer.cs @ 14455

Last change on this file since 14455 was 14455, checked in by abeham, 7 years ago

#2701: fixed bugs in tsp

File size: 6.5 KB
RevLine 
[3097]1#region License Information
2/* HeuristicLab
[14185]3 * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[3097]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
[3107]22using System.Linq;
[4722]23using HeuristicLab.Common;
[3097]24using HeuristicLab.Core;
25using HeuristicLab.Data;
26using HeuristicLab.Encodings.PermutationEncoding;
27using HeuristicLab.Operators;
[3107]28using HeuristicLab.Optimization;
[3097]29using HeuristicLab.Parameters;
30using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
31
[3158]32namespace HeuristicLab.Problems.TravelingSalesman {
[3097]33  /// <summary>
[3616]34  /// An operator for analyzing the best solution of Traveling Salesman Problems given in path representation using city coordinates.
[3097]35  /// </summary>
[3663]36  [Item("BestTSPSolutionAnalyzer", "An operator for analyzing the best solution of Traveling Salesman Problems given in path representation using city coordinates.")]
[3097]37  [StorableClass]
[11970]38  public sealed class BestTSPSolutionAnalyzer : SingleSuccessorOperator, IAnalyzer, ISingleObjectiveOperator {
[7172]39    public bool EnabledByDefault {
40      get { return true; }
41    }
42
[3787]43    public LookupParameter<BoolValue> MaximizationParameter {
44      get { return (LookupParameter<BoolValue>)Parameters["Maximization"]; }
45    }
[3662]46    public LookupParameter<DoubleMatrix> CoordinatesParameter {
47      get { return (LookupParameter<DoubleMatrix>)Parameters["Coordinates"]; }
[3097]48    }
[3662]49    public ScopeTreeLookupParameter<Permutation> PermutationParameter {
50      get { return (ScopeTreeLookupParameter<Permutation>)Parameters["Permutation"]; }
[3097]51    }
[3662]52    public ScopeTreeLookupParameter<DoubleValue> QualityParameter {
53      get { return (ScopeTreeLookupParameter<DoubleValue>)Parameters["Quality"]; }
[3097]54    }
[14455]55    public LookupParameter<PathTSPTour> BestTSPSolutionParameter {
56      get { return (LookupParameter<PathTSPTour>)Parameters["BestTSPSolution"]; }
[3107]57    }
[3662]58    public ValueLookupParameter<ResultCollection> ResultsParameter {
59      get { return (ValueLookupParameter<ResultCollection>)Parameters["Results"]; }
[3107]60    }
[3787]61    public LookupParameter<DoubleValue> BestKnownQualityParameter {
62      get { return (LookupParameter<DoubleValue>)Parameters["BestKnownQuality"]; }
63    }
64    public LookupParameter<Permutation> BestKnownSolutionParameter {
65      get { return (LookupParameter<Permutation>)Parameters["BestKnownSolution"]; }
66    }
[3097]67
[4722]68    [StorableConstructor]
69    private BestTSPSolutionAnalyzer(bool deserializing) : base(deserializing) { }
70    private BestTSPSolutionAnalyzer(BestTSPSolutionAnalyzer original, Cloner cloner) : base(original, cloner) { }
71    public override IDeepCloneable Clone(Cloner cloner) {
72      return new BestTSPSolutionAnalyzer(this, cloner);
73    }
[3663]74    public BestTSPSolutionAnalyzer()
[3097]75      : base() {
[3787]76      Parameters.Add(new LookupParameter<BoolValue>("Maximization", "True if the problem is a maximization problem."));
[3097]77      Parameters.Add(new LookupParameter<DoubleMatrix>("Coordinates", "The x- and y-Coordinates of the cities."));
[3659]78      Parameters.Add(new ScopeTreeLookupParameter<Permutation>("Permutation", "The TSP solutions given in path representation from which the best solution should be analyzed."));
79      Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("Quality", "The qualities of the TSP solutions which should be analyzed."));
[14455]80      Parameters.Add(new LookupParameter<PathTSPTour>("BestTSPSolution", "The best TSP solution."));
[3616]81      Parameters.Add(new ValueLookupParameter<ResultCollection>("Results", "The result collection where the best TSP solution should be stored."));
[3787]82      Parameters.Add(new LookupParameter<DoubleValue>("BestKnownQuality", "The quality of the best known solution of this TSP instance."));
83      Parameters.Add(new LookupParameter<Permutation>("BestKnownSolution", "The best known solution of this TSP instance."));
[6051]84
85      MaximizationParameter.Hidden = true;
86      CoordinatesParameter.Hidden = true;
87      PermutationParameter.Hidden = true;
88      QualityParameter.Hidden = true;
[14455]89      BestTSPSolutionParameter.Hidden = true;
[6051]90      ResultsParameter.Hidden = true;
91      BestKnownQualityParameter.Hidden = true;
92      BestKnownSolutionParameter.Hidden = true;
[3097]93    }
94
95    public override IOperation Apply() {
96      DoubleMatrix coordinates = CoordinatesParameter.ActualValue;
[3107]97      ItemArray<Permutation> permutations = PermutationParameter.ActualValue;
98      ItemArray<DoubleValue> qualities = QualityParameter.ActualValue;
[3616]99      ResultCollection results = ResultsParameter.ActualValue;
[3787]100      bool max = MaximizationParameter.ActualValue.Value;
101      DoubleValue bestKnownQuality = BestKnownQualityParameter.ActualValue;
[3107]102
[3787]103      int i = -1;
104      if (!max)
105        i = qualities.Select((x, index) => new { index, x.Value }).OrderBy(x => x.Value).First().index;
106      else i = qualities.Select((x, index) => new { index, x.Value }).OrderByDescending(x => x.Value).First().index;
[4068]107
[3787]108      if (bestKnownQuality == null ||
109          max && qualities[i].Value > bestKnownQuality.Value ||
110          !max && qualities[i].Value < bestKnownQuality.Value) {
111        BestKnownQualityParameter.ActualValue = new DoubleValue(qualities[i].Value);
112        BestKnownSolutionParameter.ActualValue = (Permutation)permutations[i].Clone();
113      }
[3107]114
[14455]115      PathTSPTour tour = BestTSPSolutionParameter.ActualValue;
[3616]116      if (tour == null) {
[3692]117        tour = new PathTSPTour(coordinates, (Permutation)permutations[i].Clone(), new DoubleValue(qualities[i].Value));
[14455]118        BestTSPSolutionParameter.ActualValue = tour;
[3616]119        results.Add(new Result("Best TSP Solution", tour));
120      } else {
[3787]121        if (max && tour.Quality.Value < qualities[i].Value ||
122          !max && tour.Quality.Value > qualities[i].Value) {
[3616]123          tour.Coordinates = coordinates;
[3692]124          tour.Permutation = (Permutation)permutations[i].Clone();
125          tour.Quality.Value = qualities[i].Value;
[3616]126        }
[3107]127      }
[3616]128
[3097]129      return base.Apply();
130    }
131  }
132}
Note: See TracBrowser for help on using the repository browser.