Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization/3.3/Encodings/ValueConfigurations/CheckedValueConfigurationCollection.cs @ 4981

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

#1215 worked on metaoptimization

File size: 659 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Core;
6
7namespace HeuristicLab.Problems.MetaOptimization {
8  // todo: check that at least 1 elements needs to be selected
9  // todo: control creatable item types
10  public class CheckedValueConfigurationCollection : CheckedItemCollection<IValueConfiguration>, ICheckedValueConfigurationCollection {
11
12    protected Type valueDataType;
13    public Type ValueDataType {
14      get { return valueDataType; }
15    }
16
17    public CheckedValueConfigurationCollection(Type valueDataType) {
18      this.valueDataType = valueDataType;
19    }
20  }
21}
Note: See TracBrowser for help on using the repository browser.