namespace HeuristicLab.Problems.ProgramSynthesis { using HeuristicLab.Core; using HeuristicLab.Optimization; public interface IPlushCrossover : IPlushOperator, ICrossover { ILookupParameter> ParentsParameter { get; } ILookupParameter ChildParameter { get; } } }