We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8390d99 commit 8e62968Copy full SHA for 8e62968
1 file changed
crates/geo_filters/README.md
@@ -32,9 +32,8 @@ let mut c2 = GeoDistinctCount13::default();
32
c2.push(2);
33
c2.push(3);
34
35
-let estimated_size = c1.size_with_sketch_real(&c2);
36
-assert!(estimated_size >= 3.0_f32 * 0.9 &&
37
- estimated_size <= 3.0_f32 * 1.1);
+let estimated_size = c1.size_with_sketch(&c2);
+assert_eq!(estimated_size, 3);
38
```
39
40
## Background
0 commit comments