Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization/3.3/NumericRangeList.cs @ 4516

Last change on this file since 4516 was 4516, checked in by cneumuel, 14 years ago

initial prototype for Meta Optimization Problem (#1215)

File size: 654 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
6using HeuristicLab.Core;
7
8namespace 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.