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