/** {@inheritDoc} */
public PointValuePair optimize(int maxEval, FUNC f, GoalType goalType,
double[] startPoint,
double[] lower, double[] upper) {
return super.optimizeInternal(maxEval, f, goalType,
new InitialGuess(startPoint),
new SimpleBounds(lower, upper));
}