Changeset 17145 for branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Implementation
- Timestamp:
- 07/22/19 12:09:38 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Interval/IntervalCollection.cs
r16960 r17145 22 22 using System; 23 23 using System.Collections.Generic; 24 using System.Linq;24 using HEAL.Attic; 25 25 using HeuristicLab.Common; 26 26 using HeuristicLab.Core; 27 using HeuristicLab.Collections;28 using HEAL.Attic;29 27 30 28 namespace HeuristicLab.Problems.DataAnalysis { 31 [Item(" NamedIntervals", "Represents variables with their interval ranges.")]29 [Item("IntervalCollection", "Represents variables with their interval ranges.")] 32 30 [StorableType("230B4E4B-41E5-4D33-9BC3-E2DAADDCA5AE")] 33 31 public class IntervalCollection : Item { … … 63 61 } 64 62 } 63 public override IDeepCloneable Clone(Cloner cloner) { 64 return new IntervalCollection(this, cloner); 65 } 65 66 66 67 public IntervalCollection(IDictionary<string, Interval> variableIntervals) { … … 89 90 return VariableIntervals; 90 91 } 91 92 public override IDeepCloneable Clone(Cloner cloner) {93 return new IntervalCollection(this, cloner);94 }95 92 } 96 93 }
Note: See TracChangeset
for help on using the changeset viewer.