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

Retracts the trainable implicit component

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

Syntax

C#
public override void Retract()

Implements

ICommitable..::..Retract()()()()

Remarks

Note
It is HIGHLY recommended for those users implementing a custom trainable implicit component to override this method in order to retract (i.e., make mutable) any/all fields within that trainable implicit component. Details on how to correctly implement this can be found in the Advanced Tutorial under the Tutorials section of the Clarion Library package.
Caution
If this method is overridden, that overridden method MUST also call the base class's retract method (by calling base.Retract()). Failing to call the base class's retract method will likely cause your trainable implicit component to work incorrectly.

See Also