[2] | 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 |
|
---|
| 22 | using System;
|
---|
| 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Text;
|
---|
| 25 | using System.Xml;
|
---|
| 26 | using HeuristicLab.Core;
|
---|
| 27 | using HeuristicLab.Data;
|
---|
| 28 | using HeuristicLab.Permutation;
|
---|
[1823] | 29 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
[2] | 30 |
|
---|
| 31 | namespace HeuristicLab.Routing.TSP {
|
---|
[884] | 32 | /// <summary>
|
---|
| 33 | /// Represent the tour of a TSP.
|
---|
| 34 | /// </summary>
|
---|
[2] | 35 | public class TSPTour : ItemBase, IVisualizationItem {
|
---|
[1699] | 36 |
|
---|
| 37 | [Storable]
|
---|
[2] | 38 | private DoubleMatrixData myCoordinates;
|
---|
[884] | 39 | /// <summary>
|
---|
| 40 | /// Gets or sets the coordinates of the current instance.
|
---|
| 41 | /// </summary>
|
---|
[2] | 42 | public DoubleMatrixData Coordinates {
|
---|
| 43 | get { return myCoordinates; }
|
---|
| 44 | set { myCoordinates = value; }
|
---|
| 45 | }
|
---|
[1699] | 46 |
|
---|
| 47 | [Storable]
|
---|
[2] | 48 | private Permutation.Permutation myTour;
|
---|
[884] | 49 | /// <summary>
|
---|
| 50 | /// Gets or sets the current permutation/tour of the current instance.
|
---|
| 51 | /// </summary>
|
---|
[2] | 52 | public Permutation.Permutation Tour {
|
---|
| 53 | get { return myTour; }
|
---|
| 54 | set { myTour = value; }
|
---|
| 55 | }
|
---|
| 56 |
|
---|
| 57 |
|
---|
[884] | 58 | /// <summary>
|
---|
| 59 | /// Initializes a new instance of <see cref="TSPTour"/>.
|
---|
| 60 | /// </summary>
|
---|
[2] | 61 | public TSPTour() { }
|
---|
[884] | 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>
|
---|
[2] | 68 | public TSPTour(DoubleMatrixData coordinates, Permutation.Permutation tour) {
|
---|
| 69 | myCoordinates = coordinates;
|
---|
| 70 | myTour = tour;
|
---|
| 71 | }
|
---|
| 72 |
|
---|
[884] | 73 | /// <summary>
|
---|
| 74 | /// Clones the current instance (deep clone).
|
---|
| 75 | /// </summary>
|
---|
[2526] | 76 | /// <remarks>Uses <see cref="cloner.Clone"/> method of class <see cref="Auxiliary"/> to clone
|
---|
[884] | 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>
|
---|
[2526] | 80 | public override IItem Clone(ICloner cloner) {
|
---|
| 81 | TSPTour clone = (TSPTour)base.Clone(cloner);
|
---|
| 82 | clone.myCoordinates = (DoubleMatrixData)cloner.Clone(Coordinates);
|
---|
[2] | 83 | clone.myTour = Tour;
|
---|
| 84 | return clone;
|
---|
| 85 | }
|
---|
| 86 |
|
---|
[884] | 87 | /// <summary>
|
---|
| 88 | /// Occurs when the coordinates of the current instance have been changed.
|
---|
| 89 | /// </summary>
|
---|
[2] | 90 | public event EventHandler CoordinatesChanged;
|
---|
[884] | 91 | /// <summary>
|
---|
| 92 | /// Fires a new <c>CoordinatesChanged</c> event.
|
---|
| 93 | /// </summary>
|
---|
[2] | 94 | protected virtual void OnCoordinatesChanged() {
|
---|
| 95 | if (CoordinatesChanged != null)
|
---|
| 96 | CoordinatesChanged(this, new EventArgs());
|
---|
| 97 | }
|
---|
[884] | 98 | /// <summary>
|
---|
| 99 | /// Occurs when the tour of the current instance has been changed.
|
---|
| 100 | /// </summary>
|
---|
[2] | 101 | public event EventHandler TourChanged;
|
---|
[884] | 102 | /// <summary>
|
---|
| 103 | /// Fires a new <c>TourChanged</c> event.
|
---|
| 104 | /// </summary>
|
---|
[2] | 105 | protected virtual void OnTourChanged() {
|
---|
| 106 | if (TourChanged != null)
|
---|
| 107 | TourChanged(this, new EventArgs());
|
---|
[1699] | 108 | }
|
---|
[2] | 109 | }
|
---|
| 110 | }
|
---|