Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 5009 was 5009, checked in by cneumuel, 14 years ago

#1215 worked on metaoptimization

File size: 401 bytes
Line 
1using System;
2using HeuristicLab.Core;
3using HeuristicLab.Data;
4
5namespace HeuristicLab.Problems.MetaOptimization {
6  public interface IValueConfiguration : IOptimizable, IItem {
7    IItemCollection<IParameterConfiguration> ParameterConfigurations { get; }
8    IRange RangeConstraint { get; }
9    event EventHandler ValueChanged;
10
11    void Parameterize(IParameterizedItem item);
12  }
13}
Note: See TracBrowser for help on using the repository browser.