Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
6 | using HeuristicLab.Core;
|
---|
7 |
|
---|
8 | namespace HeuristicLab.Problems.MetaOptimization {
|
---|
9 | [StorableClass]
|
---|
10 | [Item("NumericRangeList", "Represents a list of numeric ranges.")]
|
---|
11 | public class NumericRangeList : ItemCollection<INumericRange> {
|
---|
12 | public NumericRangeList() : base() { }
|
---|
13 | public NumericRangeList(IEnumerable<INumericRange> collection) : base(collection) { }
|
---|
14 | [StorableConstructor]
|
---|
15 | protected NumericRangeList(bool deserializing) : base(deserializing) { }
|
---|
16 |
|
---|
17 | }
|
---|
18 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.