Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.TSP/3.3/TSP.cs @ 3153

Last change on this file since 3153 was 3153, checked in by swagner, 14 years ago

Added TSP instance visualization (#924).

File size: 16.2 KB
Line 
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
22using System;
23using System.Collections.Generic;
24using System.Drawing;
25using System.IO;
26using System.Linq;
27using HeuristicLab.Common;
28using HeuristicLab.Core;
29using HeuristicLab.Data;
30using HeuristicLab.Encodings.PermutationEncoding;
31using HeuristicLab.Optimization;
32using HeuristicLab.Parameters;
33using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
34using HeuristicLab.PluginInfrastructure;
35
36namespace HeuristicLab.Problems.TSP {
37  [Item("TSP", "Represents a symmetric Traveling Salesman Problem.")]
38  [Creatable("Problems")]
39  [StorableClass]
40  public sealed class TSP : ParameterizedNamedItem, ISingleObjectiveProblem {
41    public override Image ItemImage {
42      get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.Type; }
43    }
44
45    #region Parameter Properties
46    public ValueParameter<BoolValue> MaximizationParameter {
47      get { return (ValueParameter<BoolValue>)Parameters["Maximization"]; }
48    }
49    IParameter ISingleObjectiveProblem.MaximizationParameter {
50      get { return MaximizationParameter; }
51    }
52    public ValueParameter<DoubleMatrix> CoordinatesParameter {
53      get { return (ValueParameter<DoubleMatrix>)Parameters["Coordinates"]; }
54    }
55    public OptionalValueParameter<DoubleMatrix> DistanceMatrixParameter {
56      get { return (OptionalValueParameter<DoubleMatrix>)Parameters["DistanceMatrix"]; }
57    }
58    public ValueParameter<BoolValue> UseDistanceMatrixParameter {
59      get { return (ValueParameter<BoolValue>)Parameters["UseDistanceMatrix"]; }
60    }
61    public ValueParameter<IPermutationCreator> SolutionCreatorParameter {
62      get { return (ValueParameter<IPermutationCreator>)Parameters["SolutionCreator"]; }
63    }
64    IParameter IProblem.SolutionCreatorParameter {
65      get { return SolutionCreatorParameter; }
66    }
67    public ValueParameter<ITSPEvaluator> EvaluatorParameter {
68      get { return (ValueParameter<ITSPEvaluator>)Parameters["Evaluator"]; }
69    }
70    IParameter IProblem.EvaluatorParameter {
71      get { return EvaluatorParameter; }
72    }
73    public OptionalValueParameter<ITSPSolutionsVisualizer> VisualizerParameter {
74      get { return (OptionalValueParameter<ITSPSolutionsVisualizer>)Parameters["Visualizer"]; }
75    }
76    IParameter IProblem.VisualizerParameter {
77      get { return VisualizerParameter; }
78    }
79    public OptionalValueParameter<DoubleValue> BestKnownQualityParameter {
80      get { return (OptionalValueParameter<DoubleValue>)Parameters["BestKnownQuality"]; }
81    }
82    IParameter ISingleObjectiveProblem.BestKnownQualityParameter {
83      get { return BestKnownQualityParameter; }
84    }
85    public OptionalValueParameter<Permutation> BestKnownSolutionParameter {
86      get { return (OptionalValueParameter<Permutation>)Parameters["BestKnownSolution"]; }
87    }
88    #endregion
89
90    #region Properties
91    public DoubleMatrix Coordinates {
92      get { return CoordinatesParameter.Value; }
93      set { CoordinatesParameter.Value = value; }
94    }
95    public DoubleMatrix DistanceMatrix {
96      get { return DistanceMatrixParameter.Value; }
97      set { DistanceMatrixParameter.Value = value; }
98    }
99    public BoolValue UseDistanceMatrix {
100      get { return UseDistanceMatrixParameter.Value; }
101      set { UseDistanceMatrixParameter.Value = value; }
102    }
103    public IPermutationCreator SolutionCreator {
104      get { return SolutionCreatorParameter.Value; }
105      set { SolutionCreatorParameter.Value = value; }
106    }
107    ISolutionCreator IProblem.SolutionCreator {
108      get { return SolutionCreatorParameter.Value; }
109    }
110    public ITSPEvaluator Evaluator {
111      get { return EvaluatorParameter.Value; }
112      set { EvaluatorParameter.Value = value; }
113    }
114    ISingleObjectiveEvaluator ISingleObjectiveProblem.Evaluator {
115      get { return EvaluatorParameter.Value; }
116    }
117    IEvaluator IProblem.Evaluator {
118      get { return EvaluatorParameter.Value; }
119    }
120    public ITSPSolutionsVisualizer Visualizer {
121      get { return VisualizerParameter.Value; }
122      set { VisualizerParameter.Value = value; }
123    }
124    ISolutionsVisualizer IProblem.Visualizer {
125      get { return VisualizerParameter.Value; }
126    }
127    public DoubleValue BestKnownQuality {
128      get { return BestKnownQualityParameter.Value; }
129      set { BestKnownQualityParameter.Value = value; }
130    }
131    public Permutation BestKnownSolution {
132      get { return BestKnownSolutionParameter.Value; }
133      set { BestKnownSolutionParameter.Value = value; }
134    }
135    private List<IPermutationOperator> operators;
136    public IEnumerable<IOperator> Operators {
137      get { return operators.Cast<IOperator>(); }
138    }
139    #endregion
140
141    public TSP()
142      : base() {
143      RandomPermutationCreator creator = new RandomPermutationCreator();
144      TSPRoundedEuclideanPathEvaluator evaluator = new TSPRoundedEuclideanPathEvaluator();
145      BestPathTSPTourVisualizer visualizer = new BestPathTSPTourVisualizer();
146
147      Parameters.Add(new ValueParameter<BoolValue>("Maximization", "Set to false as the Traveling Salesman Problem is a minimization problem.", new BoolValue(false)));
148      Parameters.Add(new ValueParameter<DoubleMatrix>("Coordinates", "The x- and y-Coordinates of the cities.", new DoubleMatrix(0, 0)));
149      Parameters.Add(new OptionalValueParameter<DoubleMatrix>("DistanceMatrix", "The matrix which contains the distances between the cities."));
150      Parameters.Add(new ValueParameter<BoolValue>("UseDistanceMatrix", "True if a distance matrix should be calculated and used for evaluation, otherwise false.", new BoolValue(true)));
151      Parameters.Add(new ValueParameter<IPermutationCreator>("SolutionCreator", "The operator which should be used to create new TSP solutions.", creator));
152      Parameters.Add(new ValueParameter<ITSPEvaluator>("Evaluator", "The operator which should be used to evaluate TSP solutions.", evaluator));
153      Parameters.Add(new OptionalValueParameter<ITSPSolutionsVisualizer>("Visualizer", "The operator which should be used to visualize TSP solutions.", visualizer));
154      Parameters.Add(new OptionalValueParameter<DoubleValue>("BestKnownQuality", "The quality of the best known solution of this TSP instance."));
155      Parameters.Add(new OptionalValueParameter<Permutation>("BestKnownSolution", "The best known solution of this TSP instance."));
156
157      creator.PermutationParameter.ActualName = "TSPTour";
158      evaluator.QualityParameter.ActualName = "TSPTourLength";
159      ParameterizeSolutionCreator();
160      ParameterizeEvaluator();
161      ParameterizeVisualizer();
162
163      Initialize();
164    }
165    [StorableConstructor]
166    private TSP(bool deserializing) : base() { }
167
168    public override IDeepCloneable Clone(Cloner cloner) {
169      TSP clone = (TSP)base.Clone(cloner);
170      clone.Initialize();
171      return clone;
172    }
173
174    public void ImportFromTSPLIB(string tspFileName, string optimalTourFileName) {
175      TSPLIBParser tspParser = new TSPLIBParser(tspFileName);
176      tspParser.Parse();
177      Name = tspParser.Name + " TSP (imported from TSPLIB)";
178      if (!string.IsNullOrEmpty(tspParser.Comment)) Description = tspParser.Comment;
179      Coordinates = new DoubleMatrix(tspParser.Vertices);
180      BestKnownQuality = null;
181      BestKnownSolution = null;
182      if (!string.IsNullOrEmpty(optimalTourFileName)) {
183        TSPLIBTourParser tourParser = new TSPLIBTourParser(optimalTourFileName);
184        tourParser.Parse();
185        if (tourParser.Tour.Length != Coordinates.Rows) throw new InvalidDataException("Length of optimal tour is not equal to number of cities.");
186        BestKnownSolution = new Permutation(tourParser.Tour);
187      }
188    }
189    public void ImportFromTSPLIB(string tspFileName, string optimalTourFileName, double bestKnownQuality) {
190      ImportFromTSPLIB(tspFileName, optimalTourFileName);
191      BestKnownQuality = new DoubleValue(bestKnownQuality);
192    }
193
194    #region Events
195    public event EventHandler SolutionCreatorChanged;
196    private void OnSolutionCreatorChanged() {
197      if (SolutionCreatorChanged != null)
198        SolutionCreatorChanged(this, EventArgs.Empty);
199    }
200    public event EventHandler EvaluatorChanged;
201    private void OnEvaluatorChanged() {
202      if (EvaluatorChanged != null)
203        EvaluatorChanged(this, EventArgs.Empty);
204    }
205    public event EventHandler VisualizerChanged;
206    private void OnVisualizerChanged() {
207      if (VisualizerChanged != null)
208        VisualizerChanged(this, EventArgs.Empty);
209    }
210    public event EventHandler OperatorsChanged;
211    private void OnOperatorsChanged() {
212      if (OperatorsChanged != null)
213        OperatorsChanged(this, EventArgs.Empty);
214    }
215
216    private void CoordinatesParameter_ValueChanged(object sender, EventArgs e) {
217      Coordinates.ItemChanged += new EventHandler<EventArgs<int, int>>(Coordinates_ItemChanged);
218      Coordinates.Reset += new EventHandler(Coordinates_Reset);
219      ParameterizeSolutionCreator();
220      ClearDistanceMatrix();
221    }
222    private void Coordinates_ItemChanged(object sender, EventArgs<int, int> e) {
223      ClearDistanceMatrix();
224    }
225    private void Coordinates_Reset(object sender, EventArgs e) {
226      ParameterizeSolutionCreator();
227      ClearDistanceMatrix();
228    }
229    private void SolutionCreatorParameter_ValueChanged(object sender, EventArgs e) {
230      SolutionCreator.PermutationParameter.ActualNameChanged += new EventHandler(SolutionCreator_PermutationParameter_ActualNameChanged);
231      ParameterizeSolutionCreator();
232      ParameterizeEvaluator();
233      ParameterizeVisualizer();
234      ParameterizeOperators();
235      OnSolutionCreatorChanged();
236    }
237    private void SolutionCreator_PermutationParameter_ActualNameChanged(object sender, EventArgs e) {
238      ParameterizeEvaluator();
239      ParameterizeVisualizer();
240      ParameterizeOperators();
241    }
242    private void EvaluatorParameter_ValueChanged(object sender, EventArgs e) {
243      Evaluator.QualityParameter.ActualNameChanged += new EventHandler(Evaluator_QualityParameter_ActualNameChanged);
244      ParameterizeEvaluator();
245      ParameterizeVisualizer();
246      ClearDistanceMatrix();
247      OnEvaluatorChanged();
248    }
249    private void Evaluator_QualityParameter_ActualNameChanged(object sender, EventArgs e) {
250      ParameterizeVisualizer();
251    }
252    private void VisualizerParameter_ValueChanged(object sender, EventArgs e) {
253      ParameterizeVisualizer();
254      OnVisualizerChanged();
255    }
256    private void MoveGenerator_TwoOptMoveParameter_ActualNameChanged(object sender, EventArgs e) {
257      string name = ((ILookupParameter<TwoOptMove>)sender).ActualName;
258      foreach (ITwoOptPermutationMoveOperator op in Operators.OfType<ITwoOptPermutationMoveOperator>()) {
259        op.TwoOptMoveParameter.ActualName = name;
260      }
261    }
262    private void MoveGenerator_ThreeOptMoveParameter_ActualNameChanged(object sender, EventArgs e) {
263      string name = ((ILookupParameter<ThreeOptMove>)sender).ActualName;
264      foreach (IThreeOptPermutationMoveOperator op in Operators.OfType<IThreeOptPermutationMoveOperator>()) {
265        op.ThreeOptMoveParameter.ActualName = name;
266      }
267    }
268    #endregion
269
270    #region Helpers
271    [StorableHook(HookType.AfterDeserialization)]
272    private void Initialize() {
273      InitializeOperators();
274      CoordinatesParameter.ValueChanged += new EventHandler(CoordinatesParameter_ValueChanged);
275      Coordinates.ItemChanged += new EventHandler<EventArgs<int, int>>(Coordinates_ItemChanged);
276      Coordinates.Reset += new EventHandler(Coordinates_Reset);
277      SolutionCreatorParameter.ValueChanged += new EventHandler(SolutionCreatorParameter_ValueChanged);
278      SolutionCreator.PermutationParameter.ActualNameChanged += new EventHandler(SolutionCreator_PermutationParameter_ActualNameChanged);
279      EvaluatorParameter.ValueChanged += new EventHandler(EvaluatorParameter_ValueChanged);
280      Evaluator.QualityParameter.ActualNameChanged += new EventHandler(Evaluator_QualityParameter_ActualNameChanged);
281      VisualizerParameter.ValueChanged += new EventHandler(VisualizerParameter_ValueChanged);
282    }
283
284    private void InitializeOperators() {
285      operators = new List<IPermutationOperator>();
286      if (ApplicationManager.Manager != null) {
287        operators.AddRange(ApplicationManager.Manager.GetInstances<IPermutationOperator>());
288        ParameterizeOperators();
289      }
290      InitializeMoveGenerators();
291    }
292    private void InitializeMoveGenerators() {
293      foreach (ITwoOptPermutationMoveOperator op in Operators.OfType<ITwoOptPermutationMoveOperator>()) {
294        if (op is IMoveGenerator) {
295          op.TwoOptMoveParameter.ActualNameChanged += new EventHandler(MoveGenerator_TwoOptMoveParameter_ActualNameChanged);
296        }
297      }
298      foreach (IThreeOptPermutationMoveOperator op in Operators.OfType<IThreeOptPermutationMoveOperator>()) {
299        if (op is IMoveGenerator) {
300          op.ThreeOptMoveParameter.ActualNameChanged += new EventHandler(MoveGenerator_ThreeOptMoveParameter_ActualNameChanged);
301        }
302      }
303    }
304    private void ParameterizeSolutionCreator() {
305      SolutionCreator.LengthParameter.Value = new IntValue(Coordinates.Rows);
306    }
307    private void ParameterizeEvaluator() {
308      if (Evaluator is ITSPPathEvaluator)
309        ((ITSPPathEvaluator)Evaluator).PermutationParameter.ActualName = SolutionCreator.PermutationParameter.ActualName;
310      if (Evaluator is ITSPCoordinatesPathEvaluator) {
311        ITSPCoordinatesPathEvaluator evaluator = (ITSPCoordinatesPathEvaluator)Evaluator;
312        evaluator.CoordinatesParameter.ActualName = CoordinatesParameter.Name;
313        evaluator.DistanceMatrixParameter.ActualName = DistanceMatrixParameter.Name;
314        evaluator.UseDistanceMatrixParameter.ActualName = UseDistanceMatrixParameter.Name;
315      }
316    }
317    private void ParameterizeVisualizer() {
318      if (Visualizer != null) {
319        Visualizer.QualityParameter.ActualName = Evaluator.QualityParameter.ActualName;
320        if (Visualizer is ICoordinatesTSPSolutionsVisualizer)
321          ((ICoordinatesTSPSolutionsVisualizer)Visualizer).CoordinatesParameter.ActualName = CoordinatesParameter.Name;
322        if (Visualizer is IPathCoordinatesTSPSolutionsVisualizer)
323          ((IPathCoordinatesTSPSolutionsVisualizer)Visualizer).PermutationParameter.ActualName = SolutionCreator.PermutationParameter.ActualName;
324      }
325    }
326    private void ParameterizeOperators() {
327      foreach (IPermutationCrossover op in Operators.OfType<IPermutationCrossover>()) {
328        op.ParentsParameter.ActualName = SolutionCreator.PermutationParameter.ActualName;
329        op.ChildParameter.ActualName = SolutionCreator.PermutationParameter.ActualName;
330      }
331      foreach (IPermutationManipulator op in Operators.OfType<IPermutationManipulator>()) {
332        op.PermutationParameter.ActualName = SolutionCreator.PermutationParameter.ActualName;
333      }
334      foreach (IPermutationMoveOperator op in Operators.OfType<IPermutationMoveOperator>()) {
335        op.PermutationParameter.ActualName = SolutionCreator.PermutationParameter.ActualName;
336      }
337      foreach (ITSPPathMoveEvaluator op in Operators.OfType<ITSPPathMoveEvaluator>()) {
338        op.CoordinatesParameter.ActualName = CoordinatesParameter.Name;
339        op.DistanceMatrixParameter.ActualName = DistanceMatrixParameter.Name;
340        op.UseDistanceMatrixParameter.ActualName = UseDistanceMatrixParameter.Name;
341      }
342    }
343
344    private void ClearDistanceMatrix() {
345      DistanceMatrixParameter.Value = null;
346    }
347    #endregion
348  }
349}
Note: See TracBrowser for help on using the repository browser.