public static enum IKSolver.SearchStrategy extends java.lang.Enum<IKSolver.SearchStrategy>
Enum Constant and Description |
---|
BACKTRACK
If a Newton step does not decrease the least-squares energy
sufficiently, use an approximate line search to backtrack.
|
LEVENBERG_MARQUARDT
Change step direction and size using Levenberg Marquardt
stabilization.
|
NONE
No strategy - simply do a (constrained) Newton solve to try and bring
the gradient to zero at each step.
|
Modifier and Type | Method and Description |
---|---|
static IKSolver.SearchStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IKSolver.SearchStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IKSolver.SearchStrategy NONE
public static final IKSolver.SearchStrategy BACKTRACK
public static final IKSolver.SearchStrategy LEVENBERG_MARQUARDT
public static IKSolver.SearchStrategy[] values()
for (IKSolver.SearchStrategy c : IKSolver.SearchStrategy.values()) System.out.println(c);
public static IKSolver.SearchStrategy valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null