Hide Comments
Hide Comments

Comments (0)

Defines the event handler signature for a node execute event (usually OnExecute). The Node parameter supplies the node that is executing, and the Context parameter supplies the context (state of the world and variables). The aResult parameters is where the result of the execution should be set.

Namespace: RSGenerics.GeneticProgramEngine

expandingSyntax

Delphi

type
  TNodeEvent<T> = procedure (Sender: TObject; const Node: TRSGPNode<T>;
  const Context: TRSGPContext<T>; var aResult: T ) of object;
 

Type Parameters

T

Parameters

Sender

Type: TObject

Node

Type: TRSGPNode<T>

Context

Type: TRSGPContext<T>

aResult

Type: T

expandingSee Also

Comments (0)