gcs: fix slight typo in docs, 2^-n not 2^-1
This commit is contained in:
parent
c59d7e8fba
commit
0830c7046f
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ Golomb-Coded Set
|
||||||
|
|
||||||
A Golomb-coded set is a probabilistic data structure used similarly to a Bloom
|
A Golomb-coded set is a probabilistic data structure used similarly to a Bloom
|
||||||
filter. A filter uses constant-size overhead plus on average n+2 bits per
|
filter. A filter uses constant-size overhead plus on average n+2 bits per
|
||||||
item added to the filter, where 2^-1 is the desired false positive (collision)
|
item added to the filter, where 2^-n is the desired false positive (collision)
|
||||||
probability.
|
probability.
|
||||||
|
|
||||||
GCS use in Bitcoin
|
GCS use in Bitcoin
|
||||||
|
|
Loading…
Reference in a new issue