- Timestamp:
- 03/03/17 17:33:24 (8 years ago)
- Location:
- branches/PersistenceOverhaul/HeuristicLab.Core/3.3/Interfaces/DirectedGraph
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Core/3.3/Interfaces/DirectedGraph/IArc.cs
r12012 r14712 24 24 25 25 namespace HeuristicLab.Core { 26 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("04788331-AEC8-4D8B-801E-1600F164CEC6")] 26 27 public interface IArc : IItem { 27 28 IVertex Source { get; } … … 33 34 } 34 35 36 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("AF7C35B1-3040-481A-AE19-FFDE4C517AF5")] 35 37 public interface IArc<T> : IArc where T : class,IDeepCloneable { 36 38 T Data { get; set; } -
branches/PersistenceOverhaul/HeuristicLab.Core/3.3/Interfaces/DirectedGraph/IDirectedGraph.cs
r12012 r14712 25 25 26 26 namespace HeuristicLab.Core { 27 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("BE794FC7-7DAF-4828-8014-2714A8BA2140")] 27 28 public interface IDirectedGraph : IItem { 28 29 IEnumerable<IVertex> Vertices { get; } -
branches/PersistenceOverhaul/HeuristicLab.Core/3.3/Interfaces/DirectedGraph/IVertex.cs
r12012 r14712 25 25 26 26 namespace HeuristicLab.Core { 27 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("3677EA7A-B956-47D1-BEDA-5041CA5A7903")] 27 28 public interface IVertex : IItem { 28 29 IEnumerable<IArc> InArcs { get; } … … 44 45 } 45 46 47 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("5184E468-DA53-4D59-B86D-5DC000E17B57")] 46 48 public interface IVertex<T> : IVertex where T : class, IDeepCloneable { 47 49 T Data { get; set; }
Note: See TracChangeset
for help on using the changeset viewer.