Free cookie consent management tool by TermsFeed Policy Generator

source: addons/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Crossover/IPlushCrossover.cs @ 15692

Last change on this file since 15692 was 15275, checked in by pkimmesw, 7 years ago

#2665 Added PlushEncoding, ZeroErrorDistributionAnalzer

File size: 405 bytes
Line 
1namespace 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.