Method Combine
Combine(Single, Boolean, Single)
Implement this in a subclass to combine the first pass and
second pass scores. If secondPassMatches
is false
then
the second pass query failed to match a hit from the
first pass query, and you should ignore the
secondPassScore
.
Declaration
protected abstract float Combine(float firstPassScore, bool secondPassMatches, float secondPassScore)
Parameters
Type |
Name |
Description |
System.Single |
firstPassScore |
|
System.Boolean |
secondPassMatches |
|
System.Single |
secondPassScore |
|
Returns
Type |
Description |
System.Single |
|