Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
dms3
bbloom
Commits
4595e998
Commit
4595e998
authored
Jul 09, 2017
by
Łukasz Magiera
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Create valid filters for zero numEntries
parent
0f5286d2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
bbloom.go
bbloom.go
+1
-1
No files found.
bbloom.go
View file @
4595e998
...
...
@@ -62,7 +62,7 @@ func New(params ...float64) (bloomfilter *Bloom, err error) {
return
nil
,
ErrInvalidParms
}
if
params
[
1
]
<
1
{
entries
,
locs
=
calcSizeByWrongPositives
(
params
[
0
],
params
[
1
])
entries
,
locs
=
calcSizeByWrongPositives
(
math
.
Max
(
params
[
0
],
1
),
params
[
1
])
}
else
{
entries
,
locs
=
uint64
(
params
[
0
]),
uint64
(
params
[
1
])
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment