All Packages Class Hierarchy This Package Previous Next Index
Interface berkeley.cs.dmc.numericalMethods.MinimizeFunction
- public interface MinimizeFunction
An interface for functions seeking to be minimized. The only
method is for evaluating the function at a point.
-
evaluate(double, Object[])
- The method to evaluate the function being minimized.
evaluate
public abstract double evaluate(double x,
Object data[])
- The method to evaluate the function being minimized.
- Parameters:
- x - The point at which the function should be evaluated.
- data - User data passed in to the Minimize method.
- Returns:
- The function value at x.
All Packages Class Hierarchy This Package Previous Next Index