- Timestamp:
- 07/08/16 14:40:02 (8 years ago)
- Location:
- branches/crossvalidation-2434
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/crossvalidation-2434
- Property svn:mergeinfo changed
-
branches/crossvalidation-2434/HeuristicLab.Core
- Property svn:mergeinfo changed
/stable/HeuristicLab.Core merged: 13316 /trunk/sources/HeuristicLab.Core merged: 13321,13397,13450,13800
- Property svn:mergeinfo changed
-
branches/crossvalidation-2434/HeuristicLab.Core/3.3/Collections/DirectedGraph/Arc.cs
r12012 r14029 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 5Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 39 39 get { return label; } 40 40 set { 41 if (label .Equals(value)) return;41 if (label == value) return; 42 42 label = value; 43 43 OnChanged(this, EventArgs.Empty); … … 83 83 84 84 [StorableClass] 85 public class Arc<T> : Arc, IArc<T> where T : class, IDeepCloneable {85 public class Arc<T> : Arc, IArc<T> where T : class, IDeepCloneable { 86 86 [Storable] 87 87 protected T data; -
branches/crossvalidation-2434/HeuristicLab.Core/3.3/Collections/ScopeList.cs
r12012 r14029 21 21 22 22 using System.Collections.Generic; 23 using System.Linq;24 23 using HeuristicLab.Common; 25 24 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; … … 31 30 [StorableConstructor] 32 31 private ScopeList(bool deserializing) : base(deserializing) { } 33 private ScopeList(ScopeList original, Cloner cloner) 34 : base(original, cloner) { 35 list = new List<IScope>(original.Select(x => cloner.Clone(x))); 36 } 32 private ScopeList(ScopeList original, Cloner cloner) : base(original, cloner) { } 37 33 public ScopeList() : base() { } 38 34 public ScopeList(int capacity) : base(capacity) { }
Note: See TracChangeset
for help on using the changeset viewer.