1 write to _args
Microsoft.ML.Sweeper (1)
Algorithms\NelderMead.cs (1)
98
_args
= options;
10 references to _args
Microsoft.ML.Sweeper (10)
Algorithms\NelderMead.cs (10)
157
var nextPoint = GetNewPoint(_centroid, _worst.Value,
_args
.DeltaReflection);
158
if (OutOfBounds(nextPoint) &&
_args
.ProjectInbounds)
161
nextPoint = GetNewPoint(_centroid, _worst.Value,
_args
.DeltaInsideContraction);
193
nextPoint = GetNewPoint(_centroid, _worst.Value,
_args
.DeltaExpansion);
194
if (OutOfBounds(nextPoint) &&
_args
.ProjectInbounds)
197
nextPoint = GetNewPoint(_centroid, _worst.Value,
_args
.DeltaInsideContraction);
206
nextPoint = GetNewPoint(_centroid, _worst.Value,
_args
.DeltaOutsideContraction);
212
nextPoint = GetNewPoint(_centroid, _worst.Value,
_args
.DeltaInsideContraction);
288
if (SimplexDiameter() <
_args
.StoppingSimplexDiameter)
405
var newPoint = GetNewPoint(_secondWorst.Value, sortedVertices[i].Value, -
_args
.GammaShrink);