neo_frizbee 0.7.2

Fast fuzzy matching via SIMD smith waterman, similar algorithm to FZF/FZY
Documentation
1
2
3
4
5
6
7
8
9
//! Reference implementation, without SIMD, for the smith waterman algorithm

mod algorithm;
mod indices;
mod typos;

pub use algorithm::smith_waterman;
pub use indices::char_indices_from_score_matrix;
pub use typos::typos_from_score_matrix;