Defines how often the genetic programming component attemps point mutation in a tree
Namespace: RSGAConsts
Delphi
|
type
TGPPointMutationMethod = (
pmmPerNode,
pmmPerTree);
|
|
Name
|
Description
|
|
pmmPerNode
|
Attempt point mutation on every node of the tree. If point mutation occurs, keep trying for all other nodes
|
|
pmmPerTree
|
Attempt point mutation on every node of the tree. Once point mutation occurs, stop mutation.
|
Top
|