Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Routing.TSP/3.3/TSPTour.cs @ 2520

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

Implemented first draft of MainForm support in HeuristicLab.Core/HeuristicLab.Core.Views and all other depending plugins (#770)

File size: 3.9 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2008 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.Text;
25using System.Xml;
26using HeuristicLab.Core;
27using HeuristicLab.Data;
28using HeuristicLab.Permutation;
29using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
30
31namespace HeuristicLab.Routing.TSP {
32  /// <summary>
33  /// Represent the tour of a TSP.
34  /// </summary>
35  public class TSPTour : ItemBase, IVisualizationItem {
36
37    [Storable]
38    private DoubleMatrixData myCoordinates;
39    /// <summary>
40    /// Gets or sets the coordinates of the current instance.
41    /// </summary>
42    public DoubleMatrixData Coordinates {
43      get { return myCoordinates; }
44      set { myCoordinates = value; }
45    }
46
47    [Storable]
48    private Permutation.Permutation myTour;
49    /// <summary>
50    /// Gets or sets the current permutation/tour of the current instance.
51    /// </summary>
52    public Permutation.Permutation Tour {
53      get { return myTour; }
54      set { myTour = value; }
55    }
56
57
58    /// <summary>
59    /// Initializes a new instance of <see cref="TSPTour"/>.
60    /// </summary>
61    public TSPTour() { }
62    /// <summary>
63    /// Initializes a new instance of <see cref="TSPTour"/> with the given <paramref name="coordinates"/>
64    /// and the given <paramref name="tour"/>.
65    /// </summary>
66    /// <param name="coordinates">The coordinates of the TSP.</param>
67    /// <param name="tour">The tour the current instance should represent.</param>
68    public TSPTour(DoubleMatrixData coordinates, Permutation.Permutation tour) {
69      myCoordinates = coordinates;
70      myTour = tour;
71    }
72
73    /// <summary>
74    /// Clones the current instance (deep clone).
75    /// </summary>
76    /// <remarks>Uses <see cref="Auxiliary.Clone"/> method of class <see cref="Auxiliary"/> to clone
77    /// the coordinates.</remarks>
78    /// <param name="clonedObjects">Dictionary of all already cloned objects. (Needed to avoid cycles.)</param>
79    /// <returns>The cloned object as <see cref="TSPTour"/>.</returns>
80    public override object Clone(IDictionary<Guid, object> clonedObjects) {
81      TSPTour clone = (TSPTour)base.Clone(clonedObjects);
82      clone.myCoordinates = (DoubleMatrixData)Auxiliary.Clone(Coordinates, clonedObjects);
83      clone.myTour = Tour;
84      return clone;
85    }
86
87    /// <summary>
88    /// Occurs when the coordinates of the current instance have been changed.
89    /// </summary>
90    public event EventHandler CoordinatesChanged;
91    /// <summary>
92    /// Fires a new <c>CoordinatesChanged</c> event.
93    /// </summary>
94    protected virtual void OnCoordinatesChanged() {
95      if (CoordinatesChanged != null)
96        CoordinatesChanged(this, new EventArgs());
97    }
98    /// <summary>
99    /// Occurs when the tour of the current instance has been changed.
100    /// </summary>
101    public event EventHandler TourChanged;
102    /// <summary>
103    /// Fires a new <c>TourChanged</c> event.
104    /// </summary>
105    protected virtual void OnTourChanged() {
106      if (TourChanged != null)
107        TourChanged(this, new EventArgs());
108    }   
109  }
110}
Note: See TracBrowser for help on using the repository browser.