Last change
on this file since 5144 was
5144,
checked in by cneumuel, 14 years ago
|
#1215
- added possibility to create all parameter combinations from a ParameterConfigurationTree and generate an experiment from them
|
File size:
440 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using HeuristicLab.Core;
|
---|
3 | using HeuristicLab.Data;
|
---|
4 | using System.Collections.Generic;
|
---|
5 |
|
---|
6 | namespace HeuristicLab.Problems.MetaOptimization {
|
---|
7 | public interface IValueConfiguration : IOptimizable, IItem {
|
---|
8 | IItemCollection<IParameterConfiguration> ParameterConfigurations { get; }
|
---|
9 | IRange RangeConstraint { get; }
|
---|
10 | event EventHandler ValueChanged;
|
---|
11 |
|
---|
12 | void Parameterize(IParameterizedItem item);
|
---|
13 | }
|
---|
14 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.