-
- Type Parameters:
F- The type of the function to minimizeG- The type of the gradient functionS- The type of the start position of the minimization
- All Superinterfaces:
Minimizer<F,S>
public interface MinimizerWithGradient<F extends Function<S,?>,G extends Function<S,?>,S> extends Minimizer<F,S>
Interface for classes that extends the functionality ofMinimizerby providing a method that takes a gradient function.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Sminimize(F function, G gradient, S startPosition)
-