org.encog.neural.neat.training
public enum NEATInnovationType extends Enum<NEATInnovationType>
Enum Constant and Description |
---|
NewLink
A new link.
|
NewNeuron
A new neuron.
|
Modifier and Type | Method and Description |
---|---|
static NEATInnovationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NEATInnovationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NEATInnovationType NewLink
public static final NEATInnovationType NewNeuron
public static NEATInnovationType[] values()
for (NEATInnovationType c : NEATInnovationType.values()) System.out.println(c);
public static NEATInnovationType 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 © 2014. All Rights Reserved.