Last change
on this file since 15601 was
5653,
checked in by cneumuel, 14 years ago
|
#1215
- evaluation operator returns operatorgraph which creates a scope and an operation for each algorithm execution (each repetition and problem)
- split ValueConfiguration into ParameterizedValueConfiguration and RangeValueConfiguration
|
File size:
468 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using HeuristicLab.Core;
|
---|
3 |
|
---|
4 | namespace HeuristicLab.Problems.MetaOptimization {
|
---|
5 | public interface IValueConfiguration : IOptimizable, IItem {
|
---|
6 | int Number { get; set; } // if larger than 0 it will be visible in the name. this can be used when multiple ValueConfiguration with the same name exist in a list
|
---|
7 | string NumberedName { get; }
|
---|
8 |
|
---|
9 | event EventHandler ValueChanged;
|
---|
10 |
|
---|
11 | //void Parameterize(IParameterizedItem item);
|
---|
12 | }
|
---|
13 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.