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

The threshold the support calculation must pass for the condition of a rule to be matched

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

Syntax

C#
public virtual double PARTIAL_MATCH_THRESHOLD { get; set; }

Remarks

Default = 1 (if partial match is turned OFF), .7 (if partial match is turned ON)

Note
By default, the partial match threshold is set to OFF. In other words, in order for the condition of a rule to be matched, all "activated" dimension-value pairs in the condition must also be activated in the input to the rule

The value of this parameter can be changed in one of two ways:

  1. By specifying a new value using PARTIAL_MATCH_THRESHOLD
  2. By turning partial match on/off using PARTIAL_MATCH_ON
    Note that if this method is used, the value will be set to the defaults (as described above)

See Also