Interface LineSearch.Solution
- Enclosing interface:
LineSearch
public static interface LineSearch.Solution
This is the solution to a line search minimization.
-
Method Summary
Modifier and TypeMethodDescriptiondouble
linesearch
(Vector x, Vector d) Get the increment α so that f(x + α * d) is (approximately) minimized.
-
Method Details
-
linesearch
Get the increment α so that f(x + α * d) is (approximately) minimized.- Parameters:
x
- the initial positiond
- the line search direction- Returns:
- the increment α
-