Free cookie consent management tool by TermsFeed Policy Generator

source: addons/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization/3.3/Interfaces/IValueConfiguration.cs @ 17029

Last change on this file since 17029 was 5653, checked in by cneumuel, 13 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 
1using System;
2using HeuristicLab.Core;
3
4namespace 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.