From f32c4a545038547bbfed05ed64983db3722fa4a4 Mon Sep 17 00:00:00 2001 From: Ziyang Hu Date: Sun, 30 Apr 2023 09:49:14 +0800 Subject: [PATCH] fix missing import --- cozo-core/src/runtime/minhash_lsh.rs | 2 ++ 1 file changed, 2 insertions(+) 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()