source:
addons/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Crossover/IPlushCrossover.cs
Last change on this file was 15275, checked in by pkimmesw, 7 years ago | |
---|---|
File size: 405 bytes |
Line | |
---|---|
1 | namespace HeuristicLab.Problems.ProgramSynthesis.Push.Crossover { |
2 | using HeuristicLab.Core; |
3 | using HeuristicLab.Optimization; |
4 | using HeuristicLab.Problems.ProgramSynthesis.Push.Encoding; |
5 | |
6 | public interface IPlushCrossover : IPlushOperator, ICrossover { |
7 | ILookupParameter<ItemArray<PlushVector>> ParentsParameter { get; } |
8 | ILookupParameter<PlushVector> ChildParameter { get; } |
9 | } |
10 | } |
Note: See TracBrowser
for help on using the repository browser.