Last change
on this file since 5328 was
5277,
checked in by cneumuel, 14 years ago
|
#1215
- implemented crossover and manipulator operators for int and double values
|
File size:
612 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using HeuristicLab.Core;
|
---|
3 | using System.Collections.Generic;
|
---|
4 | using HeuristicLab.Data;
|
---|
5 | using HeuristicLab.Common;
|
---|
6 |
|
---|
7 | namespace HeuristicLab.Problems.MetaOptimization {
|
---|
8 | public interface IParameterConfiguration : IOptimizable, INamedItem {
|
---|
9 | string ParameterName { get; set; }
|
---|
10 | Type ParameterDataType { get; }
|
---|
11 | ICheckedValueConfigurationList ValueConfigurations { get; }
|
---|
12 | Type[] ValidTypes { get; }
|
---|
13 | int ActualValueConfigurationIndex { get; set; }
|
---|
14 |
|
---|
15 | void Parameterize(IValueParameter parameter);
|
---|
16 | void UpdateActualValueIndexToItem(IValueConfiguration vc);
|
---|
17 | }
|
---|
18 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.