Free cookie consent management tool by TermsFeed Policy Generator

source: branches/1772_HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/Operators/Interfaces/ICrossoverOperator.cs @ 17486

Last change on this file since 17486 was 17486, checked in by bburlacu, 4 years ago

#1772: Add StorableType attribute to interfaces.

File size: 347 bytes
Line 
1using HEAL.Attic;
2using HeuristicLab.Core;
3
4namespace HeuristicLab.EvolutionTracking {
5  [StorableType("4FFD9B88-F8D5-4CDE-9F69-2C3D27C923A4")]
6  public interface ICrossoverOperator<T> : IOperator where T : class,IItem {
7    IScopeTreeLookupParameter<T> ParentsParameter { get; }
8    ILookupParameter<T> ChildParameter { get; }
9  }
10}
Note: See TracBrowser for help on using the repository browser.