public static enum FirstOrderMinimizer.Method extends Enum<FirstOrderMinimizer.Method>
Enum Constant and Description |
---|
ANALYTIC
The line search is done analytically.
|
IN_EXACT_LINE_SEARCH
The line search is done using Fletcher's inexact line search method,
FletcherLineSearch . |
Modifier and Type | Method and Description |
---|---|
static FirstOrderMinimizer.Method |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FirstOrderMinimizer.Method[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FirstOrderMinimizer.Method IN_EXACT_LINE_SEARCH
FletcherLineSearch
.public static final FirstOrderMinimizer.Method ANALYTIC
public static FirstOrderMinimizer.Method[] values()
for (FirstOrderMinimizer.Method c : FirstOrderMinimizer.Method.values()) System.out.println(c);
public static FirstOrderMinimizer.Method valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2010-2020 NM FinTech Ltd.. All Rights Reserved.