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
|
Rev | Line | |
---|
[4516] | 1 | using System;
|
---|
[4839] | 2 | using HeuristicLab.Core;
|
---|
[4516] | 3 |
|
---|
| 4 | namespace HeuristicLab.Problems.MetaOptimization {
|
---|
[4981] | 5 | public interface IParameterConfiguration : IOptimizable, INamedItem {
|
---|
[4830] | 6 | string ParameterName { get; set; }
|
---|
[4839] | 7 | Type ParameterDataType { get; }
|
---|
[5277] | 8 | ICheckedValueConfigurationList ValueConfigurations { get; }
|
---|
[5207] | 9 | Type[] ValidTypes { get; }
|
---|
[5111] | 10 | int ActualValueConfigurationIndex { get; set; }
|
---|
[5009] | 11 |
|
---|
| 12 | void Parameterize(IValueParameter parameter);
|
---|
[5144] | 13 | void UpdateActualValueIndexToItem(IValueConfiguration vc);
|
---|
[4516] | 14 | }
|
---|
| 15 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.