source:
branches/1772_HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/Operators/Interfaces/ICrossoverOperator.cs
@
17958
Last change on this file since 17958 was 17486, checked in by bburlacu, 5 years ago | |
---|---|
File size: 347 bytes |
Line | |
---|---|
1 | using HEAL.Attic; |
2 | using HeuristicLab.Core; |
3 | |
4 | namespace 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.