Interface CetaMaximizer
-
- All Superinterfaces:
Optimizer<Ceta,CetaMaximizer.Solution>
- All Known Implementing Classes:
BrentCetaMaximizer
,CombinedCetaMaximizer
,GridSearchCetaMaximizer
public interface CetaMaximizer extends Optimizer<Ceta,CetaMaximizer.Solution>
Defines an algorithm to search for the maximal C(η).
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
CetaMaximizer.NegCetaFunction
static class
CetaMaximizer.Solution
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CetaMaximizer.Solution
search(Ceta ceta, double rangeStart, double rangeEnd)
Searches the maximal point of a given C(η) function within a given range.
-
-
-
Method Detail
-
search
CetaMaximizer.Solution search(Ceta ceta, double rangeStart, double rangeEnd)
Searches the maximal point of a given C(η) function within a given range.- Parameters:
ceta
- the C(η) functionrangeStart
- the start of the rangerangeEnd
- the end of the range- Returns:
- the maximal point
-
-