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