dlCBF icon indicating copy to clipboard operation
dlCBF copied to clipboard

d-left Counting Bloom Filter

Results 1 dlCBF issues
Sort by recently updated
recently updated
newest added

``` count := dlcbf.GetCount() if float64(count)*100/235886 < 1 { t.Error("Expected error < 1 percent, got", float64(count)*100/235886) } ``` In this logic, `float64(count)*100/235886 < 1` is `count*100/235886 < 1`, and this...