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