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: RSGeneticProgramming

expandingSyntax

Delphi

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

Parameters

Sender

Type: TObject

Node

Type: TRSGPNode<Variant>

Context

Type: TRSGPContext<Variant>

aResult

Type: Variant

expandingSee Also

Comments (0)