Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.TravelingSalesman/3.3/TravelingSalesmanProblem.cs @ 3430

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

Added ReadOnly property to all items of HeuristicLab.Data (#969)

File size: 18.4 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.TravelingSalesman {
37  [Item("Traveling Salesman Problem", "Represents a symmetric Traveling Salesman Problem.")]
38  [Creatable("Problems")]
39  [StorableClass]
40  public sealed class TravelingSalesmanProblem : 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 TravelingSalesmanProblem()
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 TravelingSalesmanProblem(bool deserializing) : base() { }
167
168    public override IDeepCloneable Clone(Cloner cloner) {
169      TravelingSalesmanProblem clone = (TravelingSalesmanProblem)base.Clone(cloner);
170      clone.DistanceMatrixParameter.Value = DistanceMatrixParameter.Value;
171      clone.Initialize();
172      return clone;
173    }
174
175    public void ImportFromTSPLIB(string tspFileName, string optimalTourFileName) {
176      TSPLIBParser tspParser = new TSPLIBParser(tspFileName);
177      tspParser.Parse();
178      Name = tspParser.Name + " TSP (imported from TSPLIB)";
179      if (!string.IsNullOrEmpty(tspParser.Comment)) Description = tspParser.Comment;
180      Coordinates = new DoubleMatrix(tspParser.Vertices);
181      if (tspParser.WeightType == TSPLIBParser.TSPLIBEdgeWeightType.EUC_2D) {
182        TSPRoundedEuclideanPathEvaluator evaluator = new TSPRoundedEuclideanPathEvaluator();
183        evaluator.QualityParameter.ActualName = "TSPTourLength";
184        Evaluator = evaluator;
185      } else if (tspParser.WeightType == TSPLIBParser.TSPLIBEdgeWeightType.GEO) {
186        TSPGeoPathEvaluator evaluator = new TSPGeoPathEvaluator();
187        evaluator.QualityParameter.ActualName = "TSPTourLength";
188        Evaluator = evaluator;
189      }
190      BestKnownQuality = null;
191      BestKnownSolution = null;
192
193      if (!string.IsNullOrEmpty(optimalTourFileName)) {
194        TSPLIBTourParser tourParser = new TSPLIBTourParser(optimalTourFileName);
195        tourParser.Parse();
196        if (tourParser.Tour.Length != Coordinates.Rows) throw new InvalidDataException("Length of optimal tour is not equal to number of cities.");
197        BestKnownSolution = new Permutation(PermutationTypes.RelativeUndirected, tourParser.Tour);
198      }
199    }
200    public void ImportFromTSPLIB(string tspFileName, string optimalTourFileName, double bestKnownQuality) {
201      ImportFromTSPLIB(tspFileName, optimalTourFileName);
202      BestKnownQuality = new DoubleValue(bestKnownQuality);
203    }
204
205    #region Events
206    public event EventHandler SolutionCreatorChanged;
207    private void OnSolutionCreatorChanged() {
208      if (SolutionCreatorChanged != null)
209        SolutionCreatorChanged(this, EventArgs.Empty);
210    }
211    public event EventHandler EvaluatorChanged;
212    private void OnEvaluatorChanged() {
213      if (EvaluatorChanged != null)
214        EvaluatorChanged(this, EventArgs.Empty);
215    }
216    public event EventHandler VisualizerChanged;
217    private void OnVisualizerChanged() {
218      if (VisualizerChanged != null)
219        VisualizerChanged(this, EventArgs.Empty);
220    }
221    public event EventHandler OperatorsChanged;
222    private void OnOperatorsChanged() {
223      if (OperatorsChanged != null)
224        OperatorsChanged(this, EventArgs.Empty);
225    }
226
227    private void CoordinatesParameter_ValueChanged(object sender, EventArgs e) {
228      Coordinates.ItemChanged += new EventHandler<EventArgs<int, int>>(Coordinates_ItemChanged);
229      Coordinates.Reset += new EventHandler(Coordinates_Reset);
230      ParameterizeSolutionCreator();
231      ClearDistanceMatrix();
232    }
233    private void Coordinates_ItemChanged(object sender, EventArgs<int, int> e) {
234      ClearDistanceMatrix();
235    }
236    private void Coordinates_Reset(object sender, EventArgs e) {
237      ParameterizeSolutionCreator();
238      ClearDistanceMatrix();
239    }
240    private void SolutionCreatorParameter_ValueChanged(object sender, EventArgs e) {
241      SolutionCreator.PermutationParameter.ActualNameChanged += new EventHandler(SolutionCreator_PermutationParameter_ActualNameChanged);
242      ParameterizeSolutionCreator();
243      ParameterizeEvaluator();
244      ParameterizeVisualizer();
245      ParameterizeOperators();
246      OnSolutionCreatorChanged();
247    }
248    private void SolutionCreator_PermutationParameter_ActualNameChanged(object sender, EventArgs e) {
249      ParameterizeEvaluator();
250      ParameterizeVisualizer();
251      ParameterizeOperators();
252    }
253    private void EvaluatorParameter_ValueChanged(object sender, EventArgs e) {
254      Evaluator.QualityParameter.ActualNameChanged += new EventHandler(Evaluator_QualityParameter_ActualNameChanged);
255      ParameterizeEvaluator();
256      UpdateMoveEvaluators();
257      ParameterizeVisualizer();
258      ClearDistanceMatrix();
259      OnEvaluatorChanged();
260    }
261    private void Evaluator_QualityParameter_ActualNameChanged(object sender, EventArgs e) {
262      ParameterizeVisualizer();
263    }
264    private void VisualizerParameter_ValueChanged(object sender, EventArgs e) {
265      ParameterizeVisualizer();
266      OnVisualizerChanged();
267    }
268    private void MoveGenerator_InversionMoveParameter_ActualNameChanged(object sender, EventArgs e) {
269      string name = ((ILookupParameter<InversionMove>)sender).ActualName;
270      foreach (IPermutationInversionMoveOperator op in Operators.OfType<IPermutationInversionMoveOperator>()) {
271        op.InversionMoveParameter.ActualName = name;
272      }
273    }
274    private void MoveGenerator_TranslocationMoveParameter_ActualNameChanged(object sender, EventArgs e) {
275      string name = ((ILookupParameter<TranslocationMove>)sender).ActualName;
276      foreach (IPermutationTranslocationMoveOperator op in Operators.OfType<IPermutationTranslocationMoveOperator>()) {
277        op.TranslocationMoveParameter.ActualName = name;
278      }
279    }
280    #endregion
281
282    #region Helpers
283    [StorableHook(HookType.AfterDeserialization)]
284    private void Initialize() {
285      InitializeOperators();
286      CoordinatesParameter.ValueChanged += new EventHandler(CoordinatesParameter_ValueChanged);
287      Coordinates.ItemChanged += new EventHandler<EventArgs<int, int>>(Coordinates_ItemChanged);
288      Coordinates.Reset += new EventHandler(Coordinates_Reset);
289      SolutionCreatorParameter.ValueChanged += new EventHandler(SolutionCreatorParameter_ValueChanged);
290      SolutionCreator.PermutationParameter.ActualNameChanged += new EventHandler(SolutionCreator_PermutationParameter_ActualNameChanged);
291      EvaluatorParameter.ValueChanged += new EventHandler(EvaluatorParameter_ValueChanged);
292      Evaluator.QualityParameter.ActualNameChanged += new EventHandler(Evaluator_QualityParameter_ActualNameChanged);
293      VisualizerParameter.ValueChanged += new EventHandler(VisualizerParameter_ValueChanged);
294    }
295
296    private void InitializeOperators() {
297      operators = new List<IPermutationOperator>();
298      operators.AddRange(ApplicationManager.Manager.GetInstances<IPermutationOperator>());
299      ParameterizeOperators();
300      UpdateMoveEvaluators();
301      InitializeMoveGenerators();
302    }
303    private void InitializeMoveGenerators() {
304      foreach (IPermutationInversionMoveOperator op in Operators.OfType<IPermutationInversionMoveOperator>()) {
305        if (op is IMoveGenerator) {
306          op.InversionMoveParameter.ActualNameChanged += new EventHandler(MoveGenerator_InversionMoveParameter_ActualNameChanged);
307        }
308      }
309      foreach (IPermutationTranslocationMoveOperator op in Operators.OfType<IPermutationTranslocationMoveOperator>()) {
310        if (op is IMoveGenerator) {
311          op.TranslocationMoveParameter.ActualNameChanged += new EventHandler(MoveGenerator_TranslocationMoveParameter_ActualNameChanged);
312        }
313      }
314    }
315    private void UpdateMoveEvaluators() {
316      foreach (ITSPPathMoveEvaluator op in Operators.OfType<ITSPPathMoveEvaluator>().ToList())
317        operators.Remove(op);
318      foreach (ITSPPathMoveEvaluator op in ApplicationManager.Manager.GetInstances<ITSPPathMoveEvaluator>())
319        if (op.EvaluatorType == Evaluator.GetType()) {
320          operators.Add(op);
321        }
322      ParameterizeOperators();
323      OnOperatorsChanged();
324    }
325    private void ParameterizeSolutionCreator() {
326      SolutionCreator.LengthParameter.Value = new IntValue(Coordinates.Rows);
327      SolutionCreator.PermutationTypeParameter.Value = new PermutationType(PermutationTypes.RelativeUndirected);
328    }
329    private void ParameterizeEvaluator() {
330      if (Evaluator is ITSPPathEvaluator)
331        ((ITSPPathEvaluator)Evaluator).PermutationParameter.ActualName = SolutionCreator.PermutationParameter.ActualName;
332      if (Evaluator is ITSPCoordinatesPathEvaluator) {
333        ITSPCoordinatesPathEvaluator evaluator = (ITSPCoordinatesPathEvaluator)Evaluator;
334        evaluator.CoordinatesParameter.ActualName = CoordinatesParameter.Name;
335        evaluator.DistanceMatrixParameter.ActualName = DistanceMatrixParameter.Name;
336        evaluator.UseDistanceMatrixParameter.ActualName = UseDistanceMatrixParameter.Name;
337      }
338    }
339    private void ParameterizeVisualizer() {
340      if (Visualizer != null) {
341        Visualizer.QualityParameter.ActualName = Evaluator.QualityParameter.ActualName;
342        if (Visualizer is ICoordinatesTSPSolutionsVisualizer)
343          ((ICoordinatesTSPSolutionsVisualizer)Visualizer).CoordinatesParameter.ActualName = CoordinatesParameter.Name;
344        if (Visualizer is IPathCoordinatesTSPSolutionsVisualizer)
345          ((IPathCoordinatesTSPSolutionsVisualizer)Visualizer).PermutationParameter.ActualName = SolutionCreator.PermutationParameter.ActualName;
346      }
347    }
348    private void ParameterizeOperators() {
349      foreach (IPermutationCrossover op in Operators.OfType<IPermutationCrossover>()) {
350        op.ParentsParameter.ActualName = SolutionCreator.PermutationParameter.ActualName;
351        op.ChildParameter.ActualName = SolutionCreator.PermutationParameter.ActualName;
352      }
353      foreach (IPermutationManipulator op in Operators.OfType<IPermutationManipulator>()) {
354        op.PermutationParameter.ActualName = SolutionCreator.PermutationParameter.ActualName;
355      }
356      foreach (IPermutationMoveOperator op in Operators.OfType<IPermutationMoveOperator>()) {
357        op.PermutationParameter.ActualName = SolutionCreator.PermutationParameter.ActualName;
358      }
359      foreach (ITSPPathMoveEvaluator op in Operators.OfType<ITSPPathMoveEvaluator>()) {
360        op.CoordinatesParameter.ActualName = CoordinatesParameter.Name;
361        op.DistanceMatrixParameter.ActualName = DistanceMatrixParameter.Name;
362        op.UseDistanceMatrixParameter.ActualName = UseDistanceMatrixParameter.Name;
363        op.QualityParameter.ActualName = Evaluator.QualityParameter.ActualName;
364        op.PermutationParameter.ActualName = SolutionCreator.PermutationParameter.ActualName;
365      }
366      string inversionMove = Operators.OfType<IMoveGenerator>().OfType<IPermutationInversionMoveOperator>().First().InversionMoveParameter.ActualName;
367      foreach (IPermutationInversionMoveOperator op in Operators.OfType<IPermutationInversionMoveOperator>())
368        op.InversionMoveParameter.ActualName = inversionMove;
369      string translocationMove = Operators.OfType<IMoveGenerator>().OfType<IPermutationTranslocationMoveOperator>().First().TranslocationMoveParameter.ActualName;
370      foreach (IPermutationTranslocationMoveOperator op in Operators.OfType<IPermutationTranslocationMoveOperator>())
371        op.TranslocationMoveParameter.ActualName = translocationMove;
372    }
373
374    private void ClearDistanceMatrix() {
375      DistanceMatrixParameter.Value = null;
376    }
377    #endregion
378  }
379}
Note: See TracBrowser for help on using the repository browser.