using System; using System.Collections.Generic; using System.Linq; using System.Text; 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); } }