Changeset 16565 for trunk/HeuristicLab.Core/3.3/Interfaces/DirectedGraph
- Timestamp:
- 01/28/19 13:41:42 (6 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration (added) merged: 16451-16454,16462,16465-16468,16470-16472,16474,16476-16477,16479-16487,16529-16530,16539,16551-16555,16558-16559,16562-16564
- Property svn:mergeinfo changed
-
trunk/HeuristicLab.Core
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration/HeuristicLab.Core (added) merged: 16452-16454,16462,16474,16480,16484,16529,16539,16558-16559,16563
- Property svn:mergeinfo changed
-
trunk/HeuristicLab.Core/3.3/Interfaces/DirectedGraph/IArc.cs
r15583 r16565 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 22 22 using System; 23 23 using HeuristicLab.Common; 24 using HEAL.Attic; 24 25 25 26 namespace HeuristicLab.Core { 27 [StorableType("6d358590-409c-4fbb-944a-01f8e99be025")] 26 28 public interface IArc : IItem { 27 29 IVertex Source { get; } … … 33 35 } 34 36 35 public interface IArc<T> : IArc where T : class,IDeepCloneable { 37 [StorableType("4acdc291-84ea-4da3-95b8-046f973db256")] 38 public interface IArc<T> : IArc where T : class, IDeepCloneable { 36 39 T Data { get; set; } 37 40 } -
trunk/HeuristicLab.Core/3.3/Interfaces/DirectedGraph/IDirectedGraph.cs
r15583 r16565 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using System.Collections.Generic; 24 24 using HeuristicLab.Common; 25 using HEAL.Attic; 25 26 26 27 namespace HeuristicLab.Core { 28 [StorableType("e79c962e-b662-4502-bc32-cac6a83e4e83")] 27 29 public interface IDirectedGraph : IItem { 28 30 IEnumerable<IVertex> Vertices { get; } -
trunk/HeuristicLab.Core/3.3/Interfaces/DirectedGraph/IVertex.cs
r15583 r16565 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using System.Collections.Generic; 24 24 using HeuristicLab.Common; 25 using HEAL.Attic; 25 26 26 27 namespace HeuristicLab.Core { 28 [StorableType("f7a3227e-17b9-4af6-bf6d-0801cbdca286")] 27 29 public interface IVertex : IItem { 28 30 IEnumerable<IArc> InArcs { get; } … … 44 46 } 45 47 48 [StorableType("f856ed8e-1259-4949-9784-78f1f4da1abb")] 46 49 public interface IVertex<T> : IVertex where T : class, IDeepCloneable { 47 50 T Data { get; set; }
Note: See TracChangeset
for help on using the changeset viewer.