Algorithms\NelderMead.cs (7)
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);
206nextPoint = GetNewPoint(_centroid, _worst.Value, _args.DeltaOutsideContraction);
212nextPoint = GetNewPoint(_centroid, _worst.Value, _args.DeltaInsideContraction);
405var newPoint = GetNewPoint(_secondWorst.Value, sortedVertices[i].Value, -_args.GammaShrink);