using HeuristicLab.Optimization; using HeuristicLab.Core; using HeuristicLab.Data; namespace HeuristicLab.Problems.MetaOptimization { public interface IIntValueCrossover : ICrossover { void Apply(IRandom random, IntValue value, IntValue other, IntValueRange range); } }