using System; using System.Collections.Generic; using System.Linq; using System.Text; using HeuristicLab.Optimization; using HeuristicLab.Core; using HeuristicLab.Problems.Scheduling.Encodings; namespace HeuristicLab.Problems.Scheduling.Interfaces { public interface IJSSPCrossover : ICrossover{ ILookupParameter> ParentsParameter { get; } ILookupParameter ChildParameter { get; } } }