Rev | Line | |
---|
[4516] | 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("ParameterOptimizationInfoList", "Represents a list of parameter configurations.")]
|
---|
| 11 | public class ParameterConfigurationList : CheckedItemCollection<IParameterConfiguration> {
|
---|
| 12 | public ParameterConfigurationList() : base() { }
|
---|
| 13 | public ParameterConfigurationList(IEnumerable<IParameterConfiguration> collection) : base(collection) { }
|
---|
| 14 | [StorableConstructor]
|
---|
| 15 | protected ParameterConfigurationList(bool deserializing) : base(deserializing) { }
|
---|
| 16 |
|
---|
| 17 | }
|
---|
| 18 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.