Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/Operators/Interfaces/ICrossoverOperator.cs @ 10830

Last change on this file since 10830 was 10830, checked in by bburlacu, 10 years ago

#1772: Fixed persistence errors in the GenealogyAnalyzer and the instrumented operators, tweaked display code in the GenealogyGraphChart.

File size: 270 bytes
Line 
1using HeuristicLab.Core;
2
3namespace HeuristicLab.EvolutionTracking {
4  public interface ICrossoverOperator<T> : IOperator where T : class,IItem {
5    IScopeTreeLookupParameter<T> ParentsParameter { get; }
6    ILookupParameter<T> ChildParameter { get; }
7  }
8}
Note: See TracBrowser for help on using the repository browser.