Method | Description | |
---|---|---|
Explain ( Lucene.Net.Index.IndexReader reader, int doc ) : |
An explanation of the score computation for the named document.
|
|
Normalize ( float norm ) : void |
Assigns the query normalization factor to this.
|
|
Scorer ( Lucene.Net.Index.IndexReader reader, bool scoreDocsInOrder, bool topScorer ) : Lucene.Net.Search.Scorer |
Returns a Scorer which scores documents in/out-of order according to NOTE: even if
|
Method | Description | |
---|---|---|
GetScoresDocsOutOfOrder ( ) : bool | ||
GetSumOfSquaredWeights ( ) : float |
public abstract Explain ( Lucene.Net.Index.IndexReader reader, int doc ) : |
||
reader | Lucene.Net.Index.IndexReader | sub-reader containing the give doc /// |
doc | int | /// |
return |
public abstract Normalize ( float norm ) : void | ||
norm | float | |
return | void |
public abstract Scorer ( Lucene.Net.Index.IndexReader reader, bool scoreDocsInOrder, bool topScorer ) : Lucene.Net.Search.Scorer | ||
reader | Lucene.Net.Index.IndexReader |
/// the |
scoreDocsInOrder | bool | specifies whether in-order scoring of documents is required. Note
/// that if set to false (i.e., out-of-order scoring is required),
/// this method can return whatever scoring mode it supports, as every
/// in-order scorer is also an out-of-order one. However, an
/// out-of-order scorer may not support |
topScorer | bool |
/// if true, |
return | Lucene.Net.Search.Scorer |