Interface LineSearch
-
- All Superinterfaces:
Optimizer<C2OptimProblem,LineSearch.Solution>
- All Known Implementing Classes:
FletcherLineSearch
public interface LineSearch extends Optimizer<C2OptimProblem,LineSearch.Solution>
A line search is often used in another minimization algorithm to improve the current solution in one iteration step. It begins the search from the current solution along a minimization direction. A line search does not need to be very accurate but it needs to be quick.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
LineSearch.Solution
This is the solution to a line search minimization.
-