mirror of https://github.com/apache/lucene.git
fix broken javadocs links (public inner classes taking AAC0 as a parameter)
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1329042 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
72a7a234ab
commit
37d9ff3d94
|
@ -676,7 +676,7 @@ public class TopKInEachNodeHandler extends FacetResultsHandler {
|
|||
}
|
||||
|
||||
/**
|
||||
* Maintains an array of {@link AggregatedCategory}. For space consideration, this is implemented as
|
||||
* Maintains an array of <code>AggregatedCategory</code>. For space consideration, this is implemented as
|
||||
* a pair of arrays, <i>ordinals</i> and <i>values</i>, rather than one array of pairs.
|
||||
* Enumerated in <i>ordinals</i> are siblings,
|
||||
* potential nodes of the {@link FacetResult} tree
|
||||
|
@ -685,8 +685,9 @@ public class TopKInEachNodeHandler extends FacetResultsHandler {
|
|||
* siblings are enumerated, and
|
||||
* <i>residue</i> holds the sum of values of the siblings rejected from the
|
||||
* enumerated top K.
|
||||
* @lucene.internal
|
||||
*/
|
||||
private static final class AACO {
|
||||
protected static final class AACO {
|
||||
int [] ordinals; // ordinals of the best K children, sorted from best to least
|
||||
double [] values; // the respective values for these children
|
||||
double residue; // sum of values of all other children, that did not get into top K
|
||||
|
|
Loading…
Reference in New Issue