Last change
on this file since 18183 was
16996,
checked in by gkronber, 6 years ago
|
#2520 Update plugin dependencies and references for HL.MetaOptimization for new persistence
|
File size:
523 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using HeuristicLab.Core;
|
---|
3 |
|
---|
4 | namespace HeuristicLab.Problems.MetaOptimization {
|
---|
5 | public interface IParameterConfiguration : IOptimizable, INamedItem {
|
---|
6 | string ParameterName { get; set; }
|
---|
7 | Type ParameterDataType { get; }
|
---|
8 | ICheckedValueConfigurationList ValueConfigurations { get; }
|
---|
9 | Type[] ValidTypes { get; }
|
---|
10 | int ActualValueConfigurationIndex { get; set; }
|
---|
11 |
|
---|
12 | void Parameterize(IValueParameter parameter);
|
---|
13 | void UpdateActualValueIndexToItem(IValueConfiguration vc);
|
---|
14 | }
|
---|
15 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.