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

Determines whether to increment the positive match statistics based on the information specified

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

Syntax

C#
public delegate bool PositiveMatchDeterminer(
	double feedback,
	out double increment,
	double threshold,
	ITracksMatchStatistics target
)

Parameters

feedback
Type: System..::..Double
The feedback that was received by the ITracksMatchStatistics target
increment
Type: System..::..Double%
The amount that the positive match statistic is to be increment. Note that this parameter can be (optionally) set by the positive match determiner, and the ITracksMatchStatistics target will increment the appropriate match statistic based on the value returned
threshold
Type: System..::..Double
(optional) The threshold that is to be considered when trying to determine if the positive match statistic should be incremented
target
Type: Clarion.Framework.Templates..::..ITracksMatchStatistics
(optional) The target that made the request to determine whether the positive match statistic should be incremented

Return Value

True if the positive match statistic should be incremented, or false if the negative match statistic should be incremented

See Also