Defines the type of genetic instructions (and tree nodes) in a genetic program
Namespace: RSGAConsts
Delphi
|
type
TGPGeneticInstruction = (
gpVariable,
gpConstant,
gpFunction);
|
|
Name
|
Description
|
|
gpConstant
|
Terminal node with 0 arity that contains a constant
|
|
gpFunction
|
Function node
|
|
gpVariable
|
Terminal node with 0 arity that returns a variable value
|
Top
|