package fuzzy_compare

  1. Overview
  2. Docs
Fastest bounded Levenshtein comparator over generic structures

Install

Dune Dependency

Authors

Maintainers

Sources

2.0.0.tar.gz
md5=3e82d5ab12f1cdb93e0fbae1f386f5bf
sha512=9c43989323872380b60cb593715214e37190efa6b663fbed9264aaafc0dceed5419cfd858c6e6cafdfa60a1c4ee2ccea6a408bb6f3cd7500dbea081725ba9c25

README.md.html

fuzzy_compare

Extremely fast Levenshtein comparator.

Checks whether 2 values are within a predetermined number of edits of one another.

  • most comparisons take under 5 ยตs, depending on the length of the values

  • a Functor is provided to enable comparisons across any arbitrary types

  • string comparisons are provided (functorized) out of the box

  • reuse the same automaton across all comparisons with the same max_edits, regardless of the type of the values being compared

  • max_edits must be between 0 and 3 (inclusively) due to the astronomical scaling factor during graph building

Example

(* Create an automaton *)
let within3 = Fuzzy_compare.create ~max_edits:3 in

(* true *)
let b1 = Fuzzy_compare.String.eval within3 "kitten" "kitsch" in

(* false *)
let b2 = Fuzzy_compare.String.eval within3 "kittens" "kitsch" in

Unicode / arbitrary types

This example demonstrates how to compare unicode string as well as how to compare your own types.

For unicode we'll need uunf and uuseg:

opam install uunf uuseg

First apply the Make functor:

(* Fuzzy_compare.Make is documented in [fuzzy_compare.mli] *)
module Utf8 = Fuzzy_compare.Make (struct
  type t = string

  type cmp = string [@@deriving equal]

  type index = string array

  let index x =
    (* Normalize to Unicode NFC,
       then break the string into an array of Grapheme Clusters *)
    Uunf_string.normalize_utf_8 `NFC x
    |> Uuseg_string.fold_utf_8 `Grapheme_cluster (fun acc s -> s :: acc) []
    |> Array.of_list_rev

  let length = Array.length

  let get = Array.get

  let fold = Array.fold
end)

Then proceed as usual:

let within2 = Fuzzy_compare.create ~max_edits:2 in

(* false because each emoji is made of multiple bytes *)
let b1 = Fuzzy_compare.String.eval within2 "๐Ÿ๐Ÿด๐Ÿšฉ" "๐Ÿšฉ๐Ÿด๐Ÿ" in


(* true thanks to Unicode awareness *)
let b1 = Utf8.eval within2 "๐Ÿ๐Ÿด๐Ÿšฉ" "๐Ÿšฉ๐Ÿด๐Ÿ" in

(* false *)
let b2 = Utf8.eval within2 "๐Ÿ๐Ÿด๐Ÿšฉ" "๐Ÿšฉ๐Ÿณ๏ธ" in

Thanks

Thanks to Paul Masurel and Jules Jacob for explaining clearly the beauty of the algorithms contained within the "Fast String Correction with Levenshtein-Automata" paper, and thanks to Klaus Schulz and Stoyan Mihov for writing the paper.

This library implements the most sophisticated (and most efficient) version described by Paul Masurel, with several additional low level optimizations.

Recommended reading: https://julesjacobs.com/2015/06/17/disqus-levenshtein-simple-and-fast.html https://fulmicoton.com/posts/levenshtein/