1 write to _worst
Microsoft.ML.Sweeper (1)
Algorithms\NelderMead.cs (1)
311_worst = _simplexVertices.ElementAt(0);
9 references to _worst
Microsoft.ML.Sweeper (9)
Algorithms\NelderMead.cs (9)
157var nextPoint = GetNewPoint(_centroid, _worst.Value, _args.DeltaReflection); 161nextPoint = GetNewPoint(_centroid, _worst.Value, _args.DeltaInsideContraction); 193nextPoint = GetNewPoint(_centroid, _worst.Value, _args.DeltaExpansion); 197nextPoint = GetNewPoint(_centroid, _worst.Value, _args.DeltaInsideContraction); 203else if (_lastReflectionResult.Key.CompareTo(_worst.Key) > 0) 206nextPoint = GetNewPoint(_centroid, _worst.Value, _args.DeltaOutsideContraction); 212nextPoint = GetNewPoint(_centroid, _worst.Value, _args.DeltaInsideContraction); 265if (innerContractionResult.CompareTo(_worst.Key) > 0) 303_simplexVertices.Remove(_worst.Key);