diff --git a/cozo-core/src/runtime/minhash_lsh.rs b/cozo-core/src/runtime/minhash_lsh.rs index 8e9bfcf1..e5e0a153 100644 --- a/cozo-core/src/runtime/minhash_lsh.rs +++ b/cozo-core/src/runtime/minhash_lsh.rs @@ -326,6 +326,8 @@ impl HashValues { } #[cfg(test)] pub(crate) fn jaccard(&self, other_minhash: &Self) -> f32 { + use itertools::Itertools; + let matches = self .0 .iter()