5 references to DeltaReflection
Microsoft.ML.Sweeper (5)
Algorithms\NelderMead.cs (5)
93env.CheckUserArg(options.DeltaReflection > options.DeltaOutsideContraction, nameof(options.DeltaReflection), "Must be greater than " + nameof(options.DeltaOutsideContraction)); 94env.CheckUserArg(options.DeltaExpansion > options.DeltaReflection, nameof(options.DeltaExpansion), "Must be greater than " + nameof(options.DeltaReflection)); 157var nextPoint = GetNewPoint(_centroid, _worst.Value, _args.DeltaReflection);