Free cookie consent management tool by TermsFeed Policy Generator

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

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

#1215 worked on metaoptimization

File size: 585 bytes
RevLine 
[4981]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 {
[4984]10    bool IsOptimizable { get; }
[4981]11    bool Optimize { get; set; }
[4997]12    ConstrainedValue ActualValue { get; set; }
[4984]13
[5009]14    void Randomize(IRandom random);
15    void Mutate(IRandom random);
16    void Cross(IOptimizable other, IRandom random);
[5023]17   
[4984]18    event EventHandler IsOptimizableChanged;
[4981]19    event EventHandler OptimizeChanged;
20  }
21}
Note: See TracBrowser for help on using the repository browser.