- Timestamp:
- 03/03/17 11:41:43 (8 years ago)
- Location:
- branches/PersistenceOverhaul/HeuristicLab.Core/3.3/Collections/DirectedGraph
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Core/3.3/Collections/DirectedGraph/Arc.cs
r13386 r14711 26 26 namespace HeuristicLab.Core { 27 27 [Item("Arc", "A graph arc connecting two graph vertices, that can have a weight, label, and data object for holding additional info")] 28 [Storable Class("B9E1D948-BCEF-4B07-AADD-2E39A80F15DF")]28 [StorableType("B9E1D948-BCEF-4B07-AADD-2E39A80F15DF")] 29 29 public class Arc : Item, IArc { 30 30 [Storable] … … 82 82 } 83 83 84 [Storable Class("9C41B31C-E208-46A2-87FC-45A9F0A9A928")]84 [StorableType("9C41B31C-E208-46A2-87FC-45A9F0A9A928")] 85 85 public class Arc<T> : Arc, IArc<T> where T : class,IDeepCloneable { 86 86 [Storable] -
branches/PersistenceOverhaul/HeuristicLab.Core/3.3/Collections/DirectedGraph/DirectedGraph.cs
r13368 r14711 30 30 namespace HeuristicLab.Core { 31 31 [Item("DirectedGraph", "Generic class representing a directed graph with custom vertices and content")] 32 [Storable Class("57BB1C46-28A7-482A-8BAE-437AD14B0158")]32 [StorableType("57BB1C46-28A7-482A-8BAE-437AD14B0158")] 33 33 public class DirectedGraph : Item, IDirectedGraph { 34 34 public override Image ItemImage { get { return VSImageLibrary.Graph; } } -
branches/PersistenceOverhaul/HeuristicLab.Core/3.3/Collections/DirectedGraph/Vertex.cs
r13386 r14711 28 28 namespace HeuristicLab.Core { 29 29 [Item("Vertex", "An object representing a vertex in the graph. It can have a text label, a weight, and an additional data object.")] 30 [Storable Class("DC0C1D1F-82DF-4150-94CC-A10FD3667F72")]30 [StorableType("DC0C1D1F-82DF-4150-94CC-A10FD3667F72")] 31 31 public class Vertex : Item, IVertex { 32 32 [Storable] … … 141 141 } 142 142 143 [Storable Class("0B8261A0-8829-4BB8-B7EF-940A9A0AB1D9")]143 [StorableType("0B8261A0-8829-4BB8-B7EF-940A9A0AB1D9")] 144 144 public class Vertex<T> : Vertex, IVertex<T> where T : class,IDeepCloneable { 145 145 [Storable]
Note: See TracChangeset
for help on using the changeset viewer.