Codebase list golang-github-beorn7-perks / be8cfb0
defer time/space/error bounds to paper Blake Mizerany 11 years ago
1 changed file(s) with 0 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
4444
4545 // Biased returns an Invariant for high-biased (>50th) quantiles not known a
4646 // priori with associated error bounds e (usually 0.01).
47 // Biased requires space bounds O(1/e * log(en)), where n is the total inserts, in the worst case.
4847 // See http://www.cs.rutgers.edu/~muthu/bquant.pdf for time, space, and error properties.
4948 func Biased(e float64) Invariant {
5049 return func(s *stream, r float64) float64 {