Computes a score factor based on the fraction of all query terms that a
document contains. This value is multiplied into scores.
The presence of a large portion of the query terms indicates a better
match with the query, so implementations of this method usually return
larger values when the ratio between these parameters is large and smaller
values when the ratio between them is small.
Namespace: Lucene.Net.SearchAssembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1
Syntax
C# |
---|
public abstract float Coord(
int overlap,
int maxOverlap
) |
Visual Basic |
---|
Public MustOverride Function Coord ( _
overlap As Integer, _
maxOverlap As Integer _
) As Single |
Visual C++ |
---|
public:
virtual float Coord(
int overlap,
int maxOverlap
) abstract |
Return Value
a score factor based on term overlap with the query
See Also