@@ -47,7 +47,7 @@ public interface GenericSortedView<T> extends PartitioningFeature<T>, SketchPar
47
47
* @param splitPoints an array of <i>m</i> unique, monotonically increasing items
48
48
* (of the same type as the input items)
49
49
* that divide the item input domain into <i>m+1</i> overlapping intervals.
50
- *
50
+ * <blockquote>
51
51
* <p>The start of each interval is below the lowest item retained by the sketch
52
52
* corresponding to a zero rank or zero probability, and the end of the interval
53
53
* is the rank or cumulative probability corresponding to the split point.</p>
@@ -64,7 +64,7 @@ public interface GenericSortedView<T> extends PartitioningFeature<T>, SketchPar
64
64
* </ul>
65
65
*
66
66
* <p>It is not recommended to include either the minimum or maximum items of the input stream.</p>
67
- *
67
+ * </blockquote>
68
68
* @param searchCrit the desired search criteria.
69
69
* @return a discrete CDF array of m+1 double ranks (or cumulative probabilities) on the interval [0.0, 1.0].
70
70
* @throws IllegalArgumentException if sketch is empty.
@@ -116,7 +116,7 @@ default double[] getCDF(final T[] splitPoints, final QuantileSearchCriteria sear
116
116
* @param splitPoints an array of <i>m</i> unique, monotonically increasing items
117
117
* (of the same type as the input items)
118
118
* that divide the item input domain into <i>m+1</i> consecutive, non-overlapping intervals.
119
- *
119
+ * <blockquote>
120
120
* <p>Each interval except for the end intervals starts with a split point and ends with the next split
121
121
* point in sequence.</p>
122
122
*
@@ -140,7 +140,7 @@ default double[] getCDF(final T[] splitPoints, final QuantileSearchCriteria sear
140
140
* </ul>
141
141
*
142
142
* <p>It is not recommended to include either the minimum or maximum items of the input stream.</p>
143
- *
143
+ * </blockquote>
144
144
* @param searchCrit the desired search criteria.
145
145
* @return a PMF array of m+1 probability masses as doubles on the interval [0.0, 1.0].
146
146
* @throws IllegalArgumentException if sketch is empty.
0 commit comments