Hide Comments
Hide Comments

Comments (0)

Defines the set of genetic operations to perform at each evolutionary step. By default, the genetic component provides crossover, mutation, and inversion operations. You can also specify the chances of each operation occurring every generation using the    CrossoverProbability,    MutationProbability, and    InversionProbability properties.

In addition to the standard genetic operations provided by the TRSCustomGeneticComponent, you can perform your own by writing an    OnReproduction event handler.
 
 
 
 

Namespace: RSGeneticBase

expandingSyntax

Delphi

public
  property Operations: TGAGeneticOperations read FOperations write SetOperations default Default_Genetic_Operations;
 

Property Value

Type: TGAGeneticOperations

expandingSee Also

Comments (0)