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

Initializes a new sensory information object for the specified agent at the specified time stamp.

Namespace: Clarion
Assembly: CLARIONLibrary (in CLARIONLibrary.dll) Version: 6.1.0.7 (6.1.0.7)

Syntax

C#
public static SensoryInformation NewSensoryInformation(
	Agent agent,
	long timeStamp
)

Parameters

agent
Type: Clarion.Framework..::..Agent
The agent for whom the sensory information is intended
timeStamp
Type: System..::..Int64
The long value of the time stamp for the sensory information object to be generated

Return Value

The sensory information object for the specified agent generated by this method

Remarks

Note
The sensory information object generated by this method can only be "perceived" by the agent specified. The reason for this is because the sensory information object that is returned can contain both external as well as internal, agent specific, sensory information. In fact, during the initialization process, this method will actually pre-populate the sensory information object with the agent's internal information. This includes the following:
  • The inputs for the drives in the MS
  • The goals in the goal structure
  • The contents of working memory
  • Agent-specific dimension-value pairs

See Also