Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Core/3.3/Collections/DirectedGraph/Arc.cs @ 11256

Last change on this file since 11256 was 11256, checked in by bburlacu, 10 years ago

#2223: Changed arc data from IDeepCloneable to object.

File size: 3.4 KB
RevLine 
[10278]1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2014 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
[11229]22using System;
[10278]23using HeuristicLab.Common;
[10267]24using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
25
[11241]26namespace HeuristicLab.Core {
[11248]27  [Item("Arc", "A graph arc connecting two graph vertices, that can have a weight, label, and data object for holding additional info")]
[10267]28  [StorableClass]
29  public class Arc : Item, IArc {
30    [Storable]
[11229]31    public IVertex Source { get; private set; }
[10897]32
[10267]33    [Storable]
[11229]34    public IVertex Target { get; private set; }
[10897]35
[10267]36    [Storable]
[11229]37    protected string label;
38    public string Label {
39      get { return label; }
40      set {
[11238]41        if (label.Equals(value)) return;
[11229]42        label = value;
43        OnChanged(this, EventArgs.Empty);
44      }
45    }
[10897]46
[10267]47    [Storable]
[11229]48    protected double weight;
49    public double Weight {
50      get { return weight; }
51      set {
[11238]52        if (weight.Equals(value)) return;
[11229]53        weight = value;
54        OnChanged(this, EventArgs.Empty);
55      }
56    }
[10897]57
[10267]58    [Storable]
[11256]59    protected object data;
60    public object Data {
[11229]61      get { return data; }
62      set {
[11238]63        if (data == value) return;
[11229]64        data = value;
65        OnChanged(this, EventArgs.Empty);
66      }
67    }
[10267]68
69    [StorableConstructor]
70    public Arc(bool deserializing) : base(deserializing) { }
71
[11229]72    public Arc(IVertex source, IVertex target) {
73      Source = source;
74      Target = target;
75    }
76
77    protected Arc(Arc original, Cloner cloner)
78      : base(original, cloner) {
79      Source = cloner.Clone(original.Source);
80      Target = cloner.Clone(original.Target);
81      label = original.Label;
82      weight = original.Weight;
[11256]83      if (data is IDeepCloneable)
84        data = cloner.Clone((IDeepCloneable)data);
85      else data = original.Data;
[11229]86    }
[11241]87    public override IDeepCloneable Clone(Cloner cloner) { return new Arc(this, cloner); }
[11229]88
[11238]89    public event EventHandler Changed;
90    protected virtual void OnChanged(object sender, EventArgs args) {
91      var changed = Changed;
92      if (changed != null)
93        changed(sender, args);
94    }
[11229]95  }
[10267]96
[11229]97  [StorableClass]
98  public class Arc<T> : Arc, IArc<T> where T : class,IItem {
99    public Arc(bool deserializing)
100      : base(deserializing) {
[10888]101    }
102
[11229]103    public Arc(IVertex source, IVertex target)
104      : base(source, target) {
105    }
106
[10267]107    protected Arc(Arc original, Cloner cloner)
108      : base(original, cloner) {
109    }
[11229]110
111    new public IVertex<T> Source {
112      get { return (IVertex<T>)base.Source; }
113    }
114    new public IVertex<T> Target {
115      get { return (IVertex<T>)base.Target; }
116    }
[10267]117  }
118}
Note: See TracBrowser for help on using the repository browser.