[This is preliminary documentation and is subject to change.]

Delivers feedback to the agent for the external action that was chosen based on the related sensory information object that was perceived

Namespace: Clarion.Framework
Assembly: ClarionLibrary (in ClarionLibrary.dll) Version: 6.1.1.0 (6.1.1.0)

Syntax

C#
public void ReceiveFeedback(
	SensoryInformation relatedSI,
	double feedback,
	long receivedAt
)

Parameters

relatedSI
Type: Clarion.Framework..::..SensoryInformation
The sensory information that was perceived (and which led to an external action being chosen)
feedback
Type: System..::..Double
The feedback for the external action that was chosen
receivedAt
Type: System..::..Int64
(optional) The time stamp for when the feedback was received. If this is not specified, then the \"received at\" time stamp is assumed to be equal to the time stamp for when the action, associated with the related sensory information, was performed

Examples

See the "examples" section for the Agent class

See Also