Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2839_HiveProjectManagement/HeuristicLab.Core/3.3/Collections/DirectedGraph/Arc.cs @ 16057

Last change on this file since 16057 was 16057, checked in by jkarder, 6 years ago

#2839:

File size: 3.3 KB
RevLine 
[10278]1#region License Information
2/* HeuristicLab
[16057]3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[10278]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 {
[13800]41        if (label == 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
59    [StorableConstructor]
[11879]60    protected Arc(bool deserializing) : base(deserializing) { }
[10267]61
[11229]62    public Arc(IVertex source, IVertex target) {
63      Source = source;
64      Target = target;
65    }
66
67    protected Arc(Arc original, Cloner cloner)
68      : base(original, cloner) {
69      Source = cloner.Clone(original.Source);
70      Target = cloner.Clone(original.Target);
71      label = original.Label;
72      weight = original.Weight;
73    }
[11241]74    public override IDeepCloneable Clone(Cloner cloner) { return new Arc(this, cloner); }
[11229]75
[11238]76    public event EventHandler Changed;
77    protected virtual void OnChanged(object sender, EventArgs args) {
78      var changed = Changed;
79      if (changed != null)
80        changed(sender, args);
81    }
[11229]82  }
[10267]83
[11229]84  [StorableClass]
[13800]85  public class Arc<T> : Arc, IArc<T> where T : class, IDeepCloneable {
[11912]86    [Storable]
87    protected T data;
88    public T Data {
89      get { return data; }
90      set {
91        if (data == value) return;
92        data = value;
93        OnChanged(this, EventArgs.Empty);
94      }
95    }
96
97    public override IDeepCloneable Clone(Cloner cloner) {
98      return new Arc<T>(this, cloner);
99    }
100
101    protected Arc(Arc<T> original, Cloner cloner)
102      : base(original, cloner) {
103      if (original.Data != null)
104        Data = cloner.Clone(original.Data);
105    }
106
[11229]107    public Arc(bool deserializing)
108      : base(deserializing) {
[10888]109    }
110
[11229]111    public Arc(IVertex source, IVertex target)
112      : base(source, target) {
113    }
114
[10267]115    protected Arc(Arc original, Cloner cloner)
116      : base(original, cloner) {
117    }
118  }
119}
Note: See TracBrowser for help on using the repository browser.