Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization/3.3/Interfaces/IValueConfiguration.cs @ 11193

Last change on this file since 11193 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
RevLine 
[4839]1using System;
2using HeuristicLab.Core;
3
4namespace HeuristicLab.Problems.MetaOptimization {
[4981]5  public interface IValueConfiguration : IOptimizable, IItem {
[5359]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
[4839]9    event EventHandler ValueChanged;
[5144]10   
[5653]11    //void Parameterize(IParameterizedItem item);
[4839]12  }
13}
Note: See TracBrowser for help on using the repository browser.