Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization/3.3/Interfaces/IOptimizable.cs @ 4984

Last change on this file since 4984 was 4984, checked in by cneumuel, 13 years ago

#1215 worked on metaoptimization

File size: 460 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Core;
6using HeuristicLab.Common;
7
8namespace HeuristicLab.Problems.MetaOptimization {
9  public interface IOptimizable : IItem {
10    bool IsOptimizable { get; }
11    bool Optimize { get; set; }
12    ConstrainedValue ConstrainedValue { get; set; }
13
14    event EventHandler IsOptimizableChanged;
15    event EventHandler OptimizeChanged;
16  }
17}
Note: See TracBrowser for help on using the repository browser.