[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;
|
---|
| 29 |
|
---|
| 30 | namespace HeuristicLab.Routing.TSP {
|
---|
| 31 | public class TSPTour : ItemBase, IVisualizationItem {
|
---|
| 32 | private DoubleMatrixData myCoordinates;
|
---|
| 33 | public DoubleMatrixData Coordinates {
|
---|
| 34 | get { return myCoordinates; }
|
---|
| 35 | set { myCoordinates = value; }
|
---|
| 36 | }
|
---|
| 37 | private Permutation.Permutation myTour;
|
---|
| 38 | public Permutation.Permutation Tour {
|
---|
| 39 | get { return myTour; }
|
---|
| 40 | set { myTour = value; }
|
---|
| 41 | }
|
---|
| 42 |
|
---|
| 43 |
|
---|
| 44 | public TSPTour() { }
|
---|
| 45 | public TSPTour(DoubleMatrixData coordinates, Permutation.Permutation tour) {
|
---|
| 46 | myCoordinates = coordinates;
|
---|
| 47 | myTour = tour;
|
---|
| 48 | }
|
---|
| 49 |
|
---|
| 50 |
|
---|
| 51 | public override object Clone(IDictionary<Guid, object> clonedObjects) {
|
---|
| 52 | TSPTour clone = (TSPTour)base.Clone(clonedObjects);
|
---|
| 53 | clone.myCoordinates = (DoubleMatrixData)Auxiliary.Clone(Coordinates, clonedObjects);
|
---|
| 54 | clone.myTour = Tour;
|
---|
| 55 | return clone;
|
---|
| 56 | }
|
---|
| 57 |
|
---|
| 58 | public override IView CreateView() {
|
---|
| 59 | return new TSPTourView(this);
|
---|
| 60 | }
|
---|
| 61 |
|
---|
| 62 | public event EventHandler CoordinatesChanged;
|
---|
| 63 | protected virtual void OnCoordinatesChanged() {
|
---|
| 64 | if (CoordinatesChanged != null)
|
---|
| 65 | CoordinatesChanged(this, new EventArgs());
|
---|
| 66 | }
|
---|
| 67 | public event EventHandler TourChanged;
|
---|
| 68 | protected virtual void OnTourChanged() {
|
---|
| 69 | if (TourChanged != null)
|
---|
| 70 | TourChanged(this, new EventArgs());
|
---|
| 71 | }
|
---|
| 72 |
|
---|
| 73 | #region Persistence Methods
|
---|
| 74 | public override XmlNode GetXmlNode(string name, XmlDocument document, IDictionary<Guid, IStorable> persistedObjects) {
|
---|
| 75 | XmlNode node = base.GetXmlNode(name, document, persistedObjects);
|
---|
| 76 | node.AppendChild(PersistenceManager.Persist("Coordinates", Coordinates, document, persistedObjects));
|
---|
| 77 | node.AppendChild(PersistenceManager.Persist("Tour", Tour, document, persistedObjects));
|
---|
| 78 | return node;
|
---|
| 79 | }
|
---|
| 80 | public override void Populate(XmlNode node, IDictionary<Guid, IStorable> restoredObjects) {
|
---|
| 81 | base.Populate(node, restoredObjects);
|
---|
| 82 | myCoordinates = (DoubleMatrixData)PersistenceManager.Restore(node.SelectSingleNode("Coordinates"), restoredObjects);
|
---|
| 83 | myTour = (Permutation.Permutation)PersistenceManager.Restore(node.SelectSingleNode("Tour"), restoredObjects);
|
---|
| 84 | }
|
---|
| 85 | #endregion
|
---|
| 86 | }
|
---|
| 87 | }
|
---|