Skip to content

Commit

Permalink
Fully resolved error
Browse files Browse the repository at this point in the history
  • Loading branch information
zacmon committed Jul 17, 2024
1 parent 885dc49 commit 34e5e8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tcrdist_rs"
version = "0.1.8"
version = "0.1.9"
edition = "2021"
license = "MIT"
description = "Rust tcrdist routines, including SMID-accelerated edit distances from triple_accel."
Expand Down
2 changes: 1 addition & 1 deletion src/distance.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1397,7 +1397,7 @@ pub fn str_neighbor_many_to_many(
.fold(Vec::new(), |mut v, (jdx, &s2)| {
let dist: u32 = metric_fn(s1.as_bytes(), s2.as_bytes());
if dist <= threshold {
v.push([idx, idx + jdx, dist as usize]);
v.push([idx, jdx, dist as usize]);
}
v
})
Expand Down

0 comments on commit 34e5e8b

Please sign in to comment.