Approximate string matching that scales with matches, not dictionary size. Instead of computing an edit distance against every entry, liblevenshtein represents the query
On top of that core it ships a toolbox: Unicode-correct dictionaries, restricted/weighted edits, phonetic matching (53 built-in languages), time-series similarity (Move–Split–Merge), the WallBreaker filter for very large error bounds, IDE-style contextual completion, composable fuzzy caches, and WFST adapters for language-model composition (in the companion duallity crate). Every dictionary is Send + Sync and cheap to share across threads; reads run concurrently and lock-free on every backend — static dicts read immutable arrays, dynamic dicts load an ArcSwap snapshot, and a reader never blocks on a writer.
Based on Schulz & Mihov, Fast String Correction with Levenshtein-Automata (2002) [1], and the universal construction of Mitankin, Mihov & Schulz (2009) [2].
- Why automata?
- Notation & Terminology
- Quick Start
- Architecture
- Common Use Cases
- Thread Safety & Parallelism
- Dictionary Types
- Levenshtein Automata
- Restricted & Custom Substitutions
- Weighted & Generalized Automata
- Articulatory Distance
- Time Series (Move–Split–Merge)
- WallBreaker (Large Error Bounds)
- Phonetic Matching
- WFST Integration
- Contextual Completion Engine
- Fuzzy Maps & Caching
- Additional Features
- Performance
- Formal Verification
- Feature Flags
- References
- License
The Levenshtein (edit) distance
edit_distance(W, s):
D[i,0] ← i for i in 0..∣W∣ # delete every char of W
D[0,j] ← j for j in 0..∣s∣ # insert every char of s
for i in 1..∣W∣, j in 1..∣s∣:
D[i,j] ← min( D[i−1, j ] + 1, # delete Wᵢ
D[i, j−1] + 1, # insert sⱼ
D[i−1, j−1] + (Wᵢ ≠ sⱼ ? 1 : 0) ) # match / substitute
return D[∣W∣, ∣s∣]
Spell-checking a query against a dictionary
-
Simulate a Levenshtein automaton
$A(W, k)$ whose language is exactly the strings$s$ with$d(W, s) \le k$ . Each of its states is a set of still-viable$\langle \text{position}, \text{errors}\rangle$ positions; for fixed$k$ only$\mathcal{O}(\lvert W\rvert)$ distinct states ever arise, and each is computed lazily as the search needs it. -
Walk
A(W, k)and the dictionary — a trie/DAWG — together in one shared depth-first traversal (their language intersection). A subtree is pruned the instant no automaton state survives, so the cost tracks the matching frontier, not the dictionary size.
The decisive insight of Schulz & Mihov [1] is that the automaton's transition on an input symbol x depends only on a small characteristic vector — a bit pattern marking where x matches inside the relevant window of W — and not on the concrete symbols. So one fixed, W-independent transition rule drives every query: the crate simulates the automaton's moves on the fly (the paper's imitation method) rather than constructing one. Restricting which symbol pairs may substitute generalizes this further, to the universal Levenshtein automata of Mitankin, Mihov & Schulz [2].
Defined once, used throughout.
| Symbol / term | Meaning |
|---|---|
the alphabet (bytes u8, Unicode scalars char/u32, or arbitrary u64 labels) |
|
|
|
the query (pattern) string and its length |
| a candidate string drawn from the dictionary | |
|
|
the dictionary and its number of edges (transitions) |
| the maximum edit distance / error bound | |
| edit distance between |
|
| edit operations | insertion, deletion, substitution (+ transposition, merge/split — see below) |
|
position |
automaton state: |
|
characteristic vector |
bit pattern marking where the input symbol matches inside |
| subsumption | a cheaper position dominating a costlier nearby one, pruned to keep states minimal |
| NFA / DFA | non-deterministic / deterministic finite automaton |
| DAWG | Directed Acyclic Word Graph — a trie with shared suffixes (Blumer et al. [8]) |
| DAT | Double-Array Trie — a trie packed into two integer arrays for |
| SCDAWG | Symmetric Compact DAWG — indexes all substrings, traversable in both directions (Inenaga et al. [9]) |
| ART | Adaptive Radix Tree — a space-adaptive radix trie (Leis et al. [12]) |
| transducer | here, the object that runs an automaton against a dictionary and yields matches |
| WFST | Weighted Finite-State Transducer (for composition with language models) |
| MSM | Move–Split–Merge, a metric for real-valued time series (Stefan et al. [10]) |
use liblevenshtein::prelude::*;
// A static dictionary (fast, read-only).
let dict = DoubleArrayTrie::from_terms(vec!["test", "testing", "tested"]);
// A transducer using Standard Levenshtein distance.
let transducer = Transducer::new(dict, Algorithm::Standard);
// Every term within edit distance 2 of "tset".
for candidate in transducer.query_with_distance("tset", 2) {
println!("{}: distance {}", candidate.term, candidate.distance);
}
// → test: distance 1 (transpose-free: delete 's', insert 's')[dependencies]
liblevenshtein = "0.9"
# Phonetic rules, time-series, persistence, etc. are opt-in features:
# liblevenshtein = { version = "0.9", features = ["phonetic-rules"] }SIMD (AVX2/SSE4.1) is automatic on x86_64 via runtime CPU detection — no feature flag. Dictionary backends live in the companion crate libdictenstein and are re-exported through liblevenshtein::prelude (byte-level types) or imported directly (use libdictenstein::double_array_trie::DoubleArrayTrieChar; for the Unicode variants).
crates.io note: the optional
pathmap-backenduses a git dependency and is unavailable from a plaincrates.ioinstall; build from source with--features pathmap-backendto use it.
Three layers, built bottom-up: dictionary backends (libdictenstein) → the core transducer & automata → higher-level engines.
You pick a dictionary for your access pattern, wrap it in a Transducer with an Algorithm, and either query directly or reach for a higher-level engine (phonetic, time-series, completion, cache).
The dictionary backends live in the sibling libdictenstein crate; the optional duallity crate adds WFST composition. See the architecture overview for the cross-crate picture:
| Task | Solution | Section |
|---|---|---|
| Spell checking | Standard Levenshtein + static dictionary | Levenshtein Automata |
| Autocomplete / prefix search | Dictionary prefix iteration | Prefix search |
| IDE code completion | Hierarchical scopes with draft management | Contextual Completion |
| Fuzzy search returning metadata | Value-yielding queries / value aggregation | Fuzzy Maps |
| Phonetic matching | Pattern NFAs composed with Levenshtein | Phonetic Matching |
| Pronunciation-aware costs | Weighted articulatory feature distance | Articulatory Distance |
| Time-series similarity | Move–Split–Merge metric | Time Series |
| Keyboard typo correction | Transposition algorithm + QWERTY substitutions | Algorithm Variants |
| OCR error correction | MergeAndSplit + restricted substitutions | Restricted Substitutions |
|
Large error bounds ( |
WallBreaker with SCDAWG | WallBreaker |
| Substring / infix fuzzy search | SuffixAutomaton / SCDAWG | Dictionary Types |
| Persistent / mmap dictionaries | Memory-mapped ARTrie | Dictionary Types |
| Language-model composition | WFST adapters (duallity crate) |
WFST Integration |
| Caching with eviction | Composable TTL / LRU / LFU / cost-aware policies | Fuzzy Maps & Caching |
Built for concurrent workloads from the ground up. All dictionary types are Send + Sync.
| Operation | Semantics |
|---|---|
| Query / Contains | Concurrent and lock-free on every backend — static dicts read immutable arrays, dynamic dicts load an ArcSwap snapshot; a reader never blocks on a writer |
| Insert / Remove (dynamic dicts) | Lock-free: writers publish new state by an atomic pointer swap / compare_exchange CAS, never excluding readers |
use std::thread;
use liblevenshtein::prelude::*;
let dict: DynamicDawg = DynamicDawg::from_terms(vec!["hello", "world"]);
let handles: Vec<_> = (0..4).map(|_| {
let dict = dict.clone(); // cheap: the handle is Arc-backed and shares state
thread::spawn(move || {
let transducer = Transducer::new(dict, Algorithm::Standard);
transducer.query("helo", 1).collect::<Vec<_>>()
})
}).collect();
for handle in handles {
let _results = handle.join().expect("thread panicked");
}Concurrency is fine-grained and needs no external locking — clone the (Arc-backed) handle and share it; all clones observe each other's writes. DoubleArrayTrie/DoubleArrayTrieChar (immutable after build) and DynamicDawgU64 (ArcSwap) give wait-free reads; DynamicDawg, DynamicDawgChar, SuffixAutomaton, and Scdawg guard their state with a parking_lot reader–writer lock, so many reads proceed concurrently and a write briefly excludes readers. Writes are always atomic from a reader's perspective.
Dictionaries store labels. Though named for characters, they hold arbitrary values of the same width:
| Label width | Types | Character use | Arbitrary use |
|---|---|---|---|
1 byte (u8) |
DoubleArrayTrie, DynamicDawg, SuffixAutomaton, Scdawg |
ASCII | bytes, small ints (0–255), flags |
4 bytes (char/u32) |
DoubleArrayTrieChar, DynamicDawgChar, SuffixAutomatonChar, ScdawgChar |
Unicode scalars | 32-bit ints, bit-cast f32 |
8 bytes (u64) |
DynamicDawgU64 |
— | 64-bit ints, bit-cast f64, compound keys |
Choosing a backend by access pattern (prefix · substring · term↔id) and storage (in-memory vs disk-persisted):
Byte-level distance over-counts multi-byte characters. "café" is 5 bytes but 4 characters, so a byte dictionary scores café → cafe as 2 edits (rewriting the 2-byte é). The *Char variants operate on Unicode scalars, giving the correct 1 substitution.
| Text | Bytes | Chars | Edits to ASCII |
|---|---|---|---|
| café | 5 | 4 | 1 (é→e) |
| 中文 | 6 | 2 | 2 |
| 🎉 | 4 | 1 | 1 |
Use *Char for any non-ASCII, internationalized, CJK, Cyrillic, Arabic, accented, or emoji text.
Backends come in an in-memory family and a disk-persisted (durable, memory-mapped) family; the Persistent* types are dynamic (they persist to disk — "persistent" means non-volatile, not immutable).
| Dictionary | Best for | Characteristics |
|---|---|---|
| DoubleArrayTrie [11] | static ASCII dictionaries |
|
| DynamicDawg [8] | dynamic ASCII dictionaries | atomic insert/remove, SIMD + Bloom-filter pruning (RwLock) |
| DynamicDawgU64 | large 64-bit label spaces | identifiers, hashes, compound keys; lock-free reads (ArcSwap) |
| SuffixAutomaton | substring / infix search | match a pattern anywhere within terms |
| Scdawg [9] | substring search + WallBreaker | bidirectional traversal; backs large-k search |
| PathMapDictionary | update-heavy workloads | persistent (structural-sharing) map (pathmap-backend) |
| BijectiveMap | term ↔ integer id | bidirectional term/id mapping |
| PersistentARTrie [12] | huge / durable prefix dictionaries |
dynamic, disk-persisted (memory-mapped), lock-free CAS (persistent-artrie) |
| PersistentScdawg · PersistentSuffixAutomaton · PersistentSuffixTree | huge / durable substring dictionaries | disk-persisted, dynamic, lock-free overlay |
| PersistentVocabARTrie | huge / durable term ↔ id vocabulary | disk-persisted, dynamic, lock-free overlay |
Each has a *Char Unicode counterpart. DoubleArrayTrie is the only static backend (read-only after construction); every other backend — including the entire disk-persisted Persistent* family — is dynamic, supporting atomic concurrent insert/remove. The Persistent* types are durable (persisted to disk, memory-mapped) and lock-free, not immutable.
use liblevenshtein::prelude::*;
use libdictenstein::double_array_trie::DoubleArrayTrieChar; // Unicode (4-byte) variant
let ascii = DoubleArrayTrie::from_terms(vec!["hello", "world"]);
let unicode: DoubleArrayTrieChar = DoubleArrayTrieChar::from_terms(vec!["café", "naïve", "中文"]);
// Dynamic: thread-safe runtime modification.
let dawg: DynamicDawg = DynamicDawg::new();
dawg.insert("initial");
dawg.insert("added");
dawg.remove("initial");
assert!(dawg.contains("added") && !dawg.contains("initial"));use libdictenstein::suffix_automaton::SuffixAutomaton;
let sa = SuffixAutomaton::<()>::from_text("hello world");
assert!(!sa.match_positions("llo wo").is_empty()); // substring present
assert!(sa.match_positions("xyz").is_empty()); // absentThe SCDAWG (Scdawg / ScdawgChar) additionally supports left and right extension of a matched substring — the property the WallBreaker filter relies on — at the cost of a little extra space for the reverse links.
Navigate to a prefix and iterate only the matching terms:
use liblevenshtein::prelude::*;
use libdictenstein::double_array_trie_zipper::DoubleArrayTrieZipper;
use libdictenstein::prefix_zipper::PrefixZipper; // brings with_prefix into scope
let dict = DoubleArrayTrie::from_terms(vec!["getValue", "getVariable", "setValue"]);
let zipper = DoubleArrayTrieZipper::new_from_dict(&dict);
if let Some(iter) = zipper.with_prefix(b"get") {
for (path, _zipper) in iter { // item = (Vec<u8>, zipper at the final node)
println!("Found: {}", String::from_utf8(path).expect("valid UTF-8"));
// → getValue, getVariable
}
}Algorithm |
Extra operation | Typical use |
|---|---|---|
| Standard | — (insert, delete, substitute) | general fuzzy matching |
| Transposition | swap of adjacent characters (Damerau [4]) | typing errors (teh → the costs 1) |
| MergeAndSplit | two characters ↔ one | OCR errors (rn → m, vv → w) |
use liblevenshtein::prelude::*;
let dict = DoubleArrayTrie::from_terms(vec!["the", "them", "then"]);
let standard = Transducer::new(dict.clone(), Algorithm::Standard); // teh→the = 2
let transposition = Transducer::new(dict.clone(), Algorithm::Transposition); // teh→the = 1
let merge_split = Transducer::new(dict, Algorithm::MergeAndSplit); // rn↔m = 1A state is a set of positions
transition(State, x):
Next ← ∅
for ⟨i, e⟩ in State:
χ ← characteristic_vector(x, W[i .. i + (k − e)]) # where does x match ahead?
if χ[0] = 1: # x = Wᵢ₊₁
Next ← Next ∪ { ⟨i+1, e⟩ } # match (+0)
else if e < k:
Next ← Next ∪ { ⟨i, e+1⟩ } # insertion (+1)
Next ← Next ∪ { ⟨i+1, e+1⟩ } # substitution (+1)
for j in 1 ..= (k − e) where χ[j] = 1:
Next ← Next ∪ { ⟨i+j+1, e+j⟩ } # delete j, then match
return reduce(Next) # drop subsumed positions
# ⟨i,e⟩ subsumes ⟨i′,e′⟩ ⟺ e < e′ and ∣i′ − i∣ ≤ e′ − e
# (a position reachable with fewer errors dominates nearby costlier ones)
Accept when some position reaches universal automaton, and the bit-vector universal construction of Mitankin et al. [2], are alternatives — not the default query path.)
use liblevenshtein::prelude::*;
let dict = DoubleArrayTrie::from_terms(vec!["apple", "apply", "ape"]);
let t = Transducer::new(dict, Algorithm::Standard);
for term in t.query("aple", 1) { /* matching terms (String) */ }
for c in t.query_with_distance("aple", 1) { /* c.term, c.distance */ }
for c in t.query_ordered("aple", 1) { /* by distance, then alpha */ }
for c in t.query_filtered("aple", 2, |v| *v > 100) { /* by predicate */ }For dictionaries that store values, query_values yields (term, distance, value) in a single traversal — no second lookup per hit — and query_by_value_set filters by set membership (ideal for hierarchical scope visibility):
use std::collections::HashSet;
let visible: HashSet<u32> = [1, 2, 3].into_iter().collect();
for c in t.query_by_value_set("func", 2, &visible) { /* only scopes 1,2,3 */ }A restricted policy lets specific character pairs substitute at zero cost, so chosen confusions are treated as equivalent rather than as errors. It is a substitution policy layered on the ordinary transducer (Transducer::with_substitutions) — the restricted-substitution generalization studied for universal Levenshtein automata [2].
use liblevenshtein::prelude::*;
use liblevenshtein::transducer::SubstitutionSet;
let mut set = SubstitutionSet::new();
set.allow('c', 'k'); // c ↔ k free
set.allow('f', 'p'); // f ↔ p free
let dict = DoubleArrayTrie::from_terms(vec!["kat", "cat", "fat"]);
let transducer = Transducer::with_substitutions(dict, Algorithm::Standard, set);Prebuilt sets cover the common cases:
use liblevenshtein::transducer::SubstitutionSet;
let phonetic = SubstitutionSet::phonetic_basic(); // f↔ph, c↔k, s↔z, …
let keyboard = SubstitutionSet::keyboard_qwerty(); // physically adjacent keys
let ocr = SubstitutionSet::ocr_friendly(); // 0↔O, 1↔l↔I, …
let leet = SubstitutionSet::leet_speak(); // 3↔e, 4↔a, 0↔o, …Unicode pairs use SubstitutionSetChar (.allow('é', 'e'), .allow('ñ', 'n'), …) for accent-insensitive matching.
Two complementary ways to go beyond unit-cost edits.
Discrete operations — choose which edits exist at runtime via an OperationSet, then run a generalized automaton or compose it as a WFST:
// `GeneralizedWfstBuilder` lives in the companion `duallity` crate.
use duallity::GeneralizedWfstBuilder;
use libdictenstein::dynamic_dawg_char::DynamicDawgChar;
let dict: DynamicDawgChar = DynamicDawgChar::from_terms(vec!["example", "examples"]);
let wfst = GeneralizedWfstBuilder::new(&dict)
.query("exmaple")
.max_distance(2)
.with_transposition() // or .with_merge_split(), .with_phonetic_digraphs()
.build()
.expect("build failed");Real-valued costs — OperationCostsF64 assigns a floating-point cost to each operation (the base for articulatory weighting):
use liblevenshtein::transducer::OperationCostsF64;
let costs = OperationCostsF64 {
substitution: 1.5, // substitutions cost more …
transposition: 0.5, // … transpositions cost less
..OperationCostsF64::standard() // insertion/deletion/split/merge = 1.0, match = 0.0
};
assert!(costs.is_valid());Spelling errors track pronunciation: b↔p (a voicing flip) is a smaller slip than b↔s. Articulatory distance scores a substitution by how far apart two phones sit in distinctive-feature space — place and manner of articulation, voicing, and vowel height/backness/rounding — instead of the flat “1 for any mismatch”.
// requires features = ["phonetic-rules"]
use liblevenshtein::phonetic::feature_distance::{
articulatory_distance, articulatory_distance_weighted, FeatureDistanceWeights,
};
let d_bp = articulatory_distance('b', 'p'); // small — differ only in voicing
let d_bs = articulatory_distance('b', 's'); // larger — differ in manner & place
assert!(d_bp < d_bs);
// Tune the seven feature weights to your domain (defaults reproduce the base model):
let weights = FeatureDistanceWeights { voicing: 0.5, place_step: 0.25, ..Default::default() };
let d = articulatory_distance_weighted('d', 't', &weights);Plug the weights into a transducer's substitution cost via ArticulatoryCosts::with_feature_weights(weights). The metric properties (symmetry, identity, non-negativity, boundedness, per-dimension monotonicity) are machine-checked, admit-free in Coq/Rocq — see Formal Verification.
MSM [10] is a metric for real-valued sequences built from three operations: Move a value (cost
where
MsmTransducer indexes a set of reference series in a quantized trie and answers exact range and k-NN queries. Non-empty queries walk the trie with an interval-relaxed MSM dynamic program; empty queries use the exact empty-series branch directly. Its column lower bounds are admissible — so no true neighbor within the threshold is ever pruned — and surviving candidates are re-scored at full precision:
use liblevenshtein::time_series::{MsmConfig, MsmTransducer, QuantizationConfig};
let series = vec![
vec![1.0, 2.0, 3.0, 4.0],
vec![1.0, 2.0, 2.0, 4.0],
vec![5.0, 6.0, 7.0, 8.0],
];
let index = MsmTransducer::from_series(
QuantizationConfig::for_u8(0.0, 100.0), // value range → 256 bins
MsmConfig::new(1.0), // split/merge cost c
&series,
);
let query = vec![1.0, 2.0, 3.0, 4.0];
let within = index.search_range(&query, 2.0); // Vec<(id, msm_distance)> with distance ≤ 2.0
let nearest = index.search_knn(&query, 2, 5.0); // exact 2 nearest (initial threshold 5.0)The interval lower bounds and quantization soundness carry admit-free Coq/Rocq proofs and a TLA⁺ model — see Formal Verification.
The table below lists the completed, non-synthetic benchmark evidence currently recorded in pgmcp and the repository scientific ledger. Synthetic microbenchmarks and deterministic conformance gates are intentionally omitted from this README summary; rerun commands and artifact naming are documented in Academic Benchmark Reproduction.
| Automata path | External corpus | Completed measure | Result |
|---|---|---|---|
Exact MSM automata / MsmTransducer k-NN |
UCR/aeon 2018 univariate time-series archive slice [14] | Exact 1-NN classification against a majority-label baseline | 51 datasets selected by train_count * test_count * series_len^2 <= 1e9; exact MSM 1-NN reached 11653/13754 = 0.847244 accuracy versus majority baseline 5664/13754 = 0.411807. pgmcp recorded paired evidence control_only=415, treatment_only=6404, n_discordant=6819, p_value=0.0. The exact run used 1,154,677 candidate distance evaluations, 152,272 lower-bound prunes, and 1,087,933 cutoff-abandoned evaluations. |
| Phonetic automata / LLev English profiles | CMU Pronouncing Dictionary homophone groups [15] | Recall@5 over the first 2048 CMUdict homophone cases | Fixed en-us-cmudict matched 3768/3960 expected homophone rows with mean recall@5 0.985597 and mean reciprocal rank 0.987402. The comparison profiles were Zompist 2109/3960, mean recall@5 0.642223, and american.llev + homophones.llev + names.llev 2086/3960, mean recall@5 0.627313. The post-fix diagnostic found 0 coverage gaps and 0 normalized-index/query bugs; remaining misses were top-k ceiling or ambiguous-pronunciation ranking cases. |
| Ordered Levenshtein query automata | Birkbeck/Fawthrop spelling-error gate [16] | Ordered recall and optimization gate on real spelling-error cases | Recall@5 stayed 50/51; ordered p95 latency improved with Welch p < 1e-6 and Cohen's d ~= -2.16. Allocation count improved, while allocated bytes increased because the accepted arena treatment stores vector-backed query state. |
Full experiment decisions are summarized in
docs/scientific-ledger/automata-wfst-evaluation.md
and
docs/scientific-ledger/msm-automata-evaluation-2026-06-19.md.
A plain Levenshtein automaton hits a wall at large
wallbreaker(P, k, scdawg):
p ← pieces_for(algorithm, k) # k+1 (Standard); 2k+1 (Transposition / MergeAndSplit)
results ← ∅
for piece in split(P, p): # disjoint, near-equal pieces
for (term, locus) in scdawg.exact_occurrences(piece): # 𝒪(∣piece∣) — no wall
cand ← extend_bidirectionally(term, locus, P, k) # grow ← and → within budget
if edit_distance(P, cand) ≤ k:
results ← results ∪ { (cand, edit_distance(P, cand)) }
return dedup(results)
Why WallBreakerPigeonhole.v).
Algorithm |
Minimum pieces | Reason |
|---|---|---|
| Standard | each edit corrupts |
|
| Transposition | a swap can straddle a boundary | |
| MergeAndSplit | merge/split can span a boundary |
use liblevenshtein::prelude::*;
let scdawg: Scdawg = Scdawg::from_terms(vec!["misspelled", "misspelling", "dispelled"]);
let wallbreaker = WallBreaker::new(&scdawg, 4); // or WallBreaker::with_algorithm(&scdawg, 4, Algorithm::Standard)
for result in wallbreaker.query("mispeled") {
println!("{}: distance {}", result.term, result.distance);
}For long patterns and large
Three layers, all behind the phonetic-rules feature. (The exhaustive feature-class and syntax tables live in docs/llre/, the phonetic-rules developer guide, and the grammars docs/grammar/llev.ebnf · docs/grammar/llre.ebnf; a representative slice is shown here.)
Recognize several spellings of a sound, then allow edits on top, via a product automaton:
// requires features = ["phonetic-rules"]
use liblevenshtein::phonetic::nfa::{compile, ProductAutomatonChar};
use liblevenshtein::phonetic::regex::parse;
let regex = parse("(ph|f)one").expect("parse failed");
let nfa = compile(®ex).expect("compile failed");
let product = ProductAutomatonChar::new(nfa, 2); // pattern ∘ Levenshtein(k=2)
assert!(product.accepts("phone")); // exact (distance 0)
assert!(product.accepts("fone")); // alt spelling (distance 0)
assert!(product.accepts("phon")); // delete 'e' (distance 1)
assert_eq!(product.min_distance("fon"), Some(1));
assert_eq!(product.min_distance("xyz"), None); // outside the budgetThe PhoneticGrep convenience API wraps this for one-off matching, with optional case/accent insensitivity ((?ia:cafe) matches CAFÉ).
A small language of context-sensitive phonetic rewrites with metadata, named feature classes, and syllable conditions:
[id: 1, name: "ph to f", group: orthography]
ph -> f; # phone → fone
gh -> / [:vowel:]_; # silent gh after a vowel: night → nit
c -> s / _[:front_vowel:]; # soft c: city → sity
use liblevenshtein::phonetic::llev::{parse_str, RuleSetChar};
let file = parse_str("ph -> f;\ngh -> / [:vowel:]_;").expect("parse failed");
let ruleset = RuleSetChar::from_llev(&file).expect("build failed");
let normalized = ruleset.apply("phone"); // → "fone"53 languages ship as pre-compiled Rust modules (Romance, Germanic, Slavic, Celtic, Indic, East/Southeast Asian, Semitic, and more); 123 have .llev rule data loadable at runtime. english::base(), spanish::base(), german::base(), plus helpers like english::homophones() and english::text_speak().
Regex with phonetic feature classes ([:fricative:], [:voiced:], [:nasal:], …), accent/case flags (?ia:…), Unicode normalization (?u:NFC), and per-group edit budgets (?;N):
use liblevenshtein::phonetic::llre;
let pattern = llre::compile_pattern("[:fricative:]one").expect("compile failed");
assert!(pattern.matches("fone")); // f ∈ fricative
assert!(pattern.matches("shone")); // sh ∈ fricative
assert!(!pattern.matches("bone")); // b ∉ fricativeliblevenshtein's automata can be exposed as lazy Weighted Finite-State Transducers (WFSTs) for composition with language models — phonetic rewrites, n-gram LMs, and more. As of liblevenshtein 0.9, these adapters live in the companion duallity crate, which depends on both liblevenshtein and lling-llang:
use duallity::{LevenshteinWfst, PhoneticWfstBuilder, WallBreakerWfstBuilder};
use libdictenstein::dynamic_dawg_char::DynamicDawgChar;
use lling_llang::composition::compose;
let dict: DynamicDawgChar = DynamicDawgChar::from_terms(vec!["hello", "help", "world"]);
// Levenshtein × dictionary product, ready to compose with an n-gram LM.
let lev = LevenshteinWfst::new(&dict, "helo", 2);
let composed = compose(lev, language_model);See the duallity crate for the phonetic / WallBreaker / generalized WFST builders and composition recipes.
IDE-style completion with hierarchical scopes and draft management — a typed-but-unfinished identifier is visible to completion before it is committed, and edits can be checkpointed and undone.
// requires features = ["pathmap-backend"]
use liblevenshtein::contextual::DynamicContextualCompletionEngine;
use liblevenshtein::transducer::Algorithm;
let engine = DynamicContextualCompletionEngine::with_algorithm(Algorithm::Standard);
// global → function → block scope hierarchy
let global = engine.create_root_context(0);
let function = engine.create_child_context(1, global).expect("create failed");
let block = engine.create_child_context(2, function).expect("create failed");
engine.finalize_direct(global, "std::vector").expect("insert failed");
engine.insert_str(block, "local_var").expect("insert failed"); // draft
// Completion sees drafts + finalized terms from every visible scope.
for comp in engine.complete(block, "loc", 1) {
println!("{} (draft: {}, distance: {})", comp.term, comp.is_draft, comp.distance);
}
engine.checkpoint(block).expect("checkpoint failed");
engine.insert_str(block, "iable").expect("insert failed"); // "local_variable"
engine.undo(block).expect("undo failed"); // back to "local_var"A full IDE simulation lives in examples/contextual_completion.rs.
FuzzyMultiMap unions/concatenates the values of every key within distance k — handy when several spellings should resolve to one merged result (e.g., a document-ID set):
use std::collections::HashSet;
use liblevenshtein::prelude::*;
use liblevenshtein::cache::multimap::FuzzyMultiMap;
let dict: DynamicDawgChar<HashSet<u32>> = DynamicDawgChar::new();
dict.insert_with_value("color", HashSet::from([1, 2, 5]));
dict.insert_with_value("colour", HashSet::from([3, 4]));
let fuzzy = FuzzyMultiMap::new(dict, Algorithm::Standard);
let ids = fuzzy.query("colur", 1).expect("no matches"); // {1,2,3,4,5} — union of both
for (key, distance, vals) in fuzzy.query_with_distance("colur", 1) {
println!("'{}' (distance {}): {:?}", key, distance, vals);
}HashSet/BTreeSet values are unioned; Vec values are concatenated.
Cache wrappers stack via the decorator pattern (innermost applied first); all are thread-safe.
| Policy | Eviction criterion | Use case |
|---|---|---|
| Noop / LazyInit | none / deferred init | benchmarking; sparse memoization |
| Ttl | session caches | |
| Lru / Age | least-recently-used / FIFO | general / fair |
| Lfu | lowest access count | long-lived caches |
| CostAware | balance regeneration cost vs. space | |
| MemoryPressure | memory-constrained |
use liblevenshtein::prelude::*;
use liblevenshtein::cache::eviction::{Lru, Ttl, MemoryPressure};
use std::time::Duration;
let dict: DynamicDawg = DynamicDawg::from_terms(vec!["alpha", "beta", "gamma"]);
// MemoryPressure → TTL(5 min) → LRU, all applied together:
let cache = Lru::new(Ttl::new(MemoryPressure::new(dict), Duration::from_secs(300)));
let transducer = Transducer::new(cache, Algorithm::Standard);
let _ = transducer.query("alfa", 1).collect::<Vec<_>>();Serialization (serialization, compression) — save/load dictionaries, with optional gzip (~85% smaller):
use liblevenshtein::prelude::*;
use std::fs::File;
let dict = DoubleArrayTrie::from_terms(vec!["test", "testing"]);
GzipSerializer::<BincodeSerializer>::serialize(&dict, File::create("dict.bin.gz")?)?;
let dict: DoubleArrayTrie = GzipSerializer::<BincodeSerializer>::deserialize(File::open("dict.bin.gz")?)?;
# Ok::<(), Box<dyn std::error::Error>>(())CLI (cli) — cargo install liblevenshtein --features cli,compression, then liblevenshtein query "test" --dict words.txt -m 2, … convert, or … repl.
WASM (wasm) — wasm-bindgen bindings for browser/Node.js. Grep (grep-documents, grep-full, parallel-grep) — fuzzy/phonetic search across PDF, DOCX, XLSX, EPUB, and archives.
| Operation | Complexity |
|---|---|
| Per-query setup |
|
| Per-symbol transition |
|
| Traversal |
|
| Space |
|
Measured backend comparison — 10,000-word dictionary, AMD Ryzen Threadripper PRO 5975WX, target-cpu=native, 2025-10-28 (full report):
| Backend | Construction | Exact match | Distance 1 | Distance 2 |
|---|---|---|---|---|
| DoubleArrayTrie | 3.33 ms | 4.13 µs | 8.07 µs | 12.68 µs |
| DynamicDawg | 4.17 ms | 21.78 µs | 321 µs | 2,912 µs |
| PathMap | 3.33 ms | 59.01 µs | 863 µs | 5,583 µs |
For static dictionaries, DoubleArrayTrie is the clear leader (38–175× faster fuzzy matching than the alternatives here). Bloom-filter pre-filtering and runtime SIMD further accelerate the dynamic backends; methodology and more metrics are in docs/benchmarks/.
The PathMap backend was rebuilt on pathmap's lock-free TrieRef node handles (design): root() takes an backend_fuzzy_comparison, Standard, taskset -c 2, sub-1% CIs):
Standard |
old PathMap | new PathMap | speedup | new vs DynamicDawg |
|---|---|---|---|---|
k=1 |
4.77 ms | 3.17 ms | 1.5× | 1.01× |
k=2 |
45.7 ms | 28.8 ms | 1.6× | 1.00× |
The rework yields a DynamicDawg from DoubleArrayTrie stays the static-dictionary leader for read-only sets). Subtracting the backend-independent automaton floor (every backend shares the Transducer; DoubleArrayTrie
Node-level micro-benchmarks (pathmap_node_ops_benchmark, run on both trees for a direct pre/post) pin down why. The first pass used compression-degenerate inputs (a single "a"-chain that pathmap path-compresses, plus root-depth nodes) and read flat/below-threshold — so the experiments were rebuilt with comb structures (a branch at every level) that defeat compression and reach the depth regime the hypotheses target. There the old path-replay node is edges()) per child — while the TrieRef node is
| node op (branching / deep) | old (path-replay) | new (TrieRef) | speedup |
|---|---|---|---|
transition() @ depth 40 |
182 ns ( |
27 ns ( |
6.7× |
edges() @ depth 32, fanout 8 |
1632 ns ( |
185 ns ( |
8.8× |
char edges() @ depth 32, width 8 |
4.78 µs ( |
914 ns ( |
5.2× |
root() snapshot |
7.6 ns | 47 ns | 0.16× |
The root() row is the rework's lone regression — an PathMap (e.g. MORK's Space.btm) with no copy and no lock — see examples/mork_fuzzy_query.rs. Full ledger: docs/benchmarks/pathmap-trieref-rework.md.
Selected components carry machine-checked proofs (Coq/Rocq) and model-checked specifications (TLA⁺), under docs/verification/:
| Component | Artifact | Status |
|---|---|---|
| MSM indexing (interval cost, quantization & column lower bounds) | docs/verification/msm/theories/Indexing/*.v |
admit-free Coq/Rocq |
| Articulatory distance (metric & per-dimension monotonicity) | docs/verification/articulatory/theories/*.v |
admit-free Coq/Rocq |
| WallBreaker piece counts (k+1 / 2k+1) | docs/verification/wallbreaker/.../WallBreakerPigeonhole.v |
admit-free Coq/Rocq |
| Query iterators, product automaton, online scanner, MSM trie search | docs/verification/tla/*.tla (Subsumption, ValueYieldingQuery, PriorityQuery, ProductAutomaton, OnlineScanner, MsmTrieSearch) |
TLC model-checked |
See docs/verification/README_FORMAL_GATES.md for scope and methodology.
| Feature | Enables |
|---|---|
phonetic-rules |
.llev / .llre languages, NFA composition, articulatory distance |
pathmap-backend |
PathMap dictionary, contextual completion, fuzzy caches |
persistent-artrie |
memory-mapped ARTrie dictionaries |
wfst |
lling-llang WFST adapters |
serialization / compression / protobuf |
save/load; gzip; Protocol Buffers |
cli |
command-line tool + REPL |
wasm |
WebAssembly bindings |
grep-documents / grep-full / parallel-grep |
fuzzy/phonetic document & archive search (PDF, DOCX, XLSX, EPUB, …) |
Enabling a feature enables the features it depends on (A → B = "A enables B"):
(See Cargo.toml for the complete set, including eviction-optimization profiles.)
- K. U. Schulz and S. Mihov. "Fast String Correction with Levenshtein-Automata." International Journal on Document Analysis and Recognition (IJDAR), 5(1):67–85, 2002. doi:10.1007/s10032-002-0082-8
- P. Mitankin, S. Mihov, and K. U. Schulz. "Universal Levenshtein automata for a generalization of the Levenshtein distance." Annuaire de l'Université de Sofia "St. Kl. Ohridski", Faculté de Mathématique et Informatique, 99:5–23, 2009. (Foundational treatment: P. Mitankin, Universal Levenshtein Automata. Building and Properties, MSc thesis, Sofia University, 2005 — PDF.)
- R. A. Wagner and M. J. Fischer. "The String-to-String Correction Problem." Journal of the ACM, 21(1):168–173, 1974. doi:10.1145/321796.321811
- F. J. Damerau. "A technique for computer detection and correction of spelling errors." Communications of the ACM, 7(3):171–176, 1964. doi:10.1145/363958.363994
- V. I. Levenshtein. "Binary codes capable of correcting deletions, insertions, and reversals." Soviet Physics Doklady, 10(8):707–710, 1966.
- S. Mihov and K. U. Schulz. "Fast approximate search in large dictionaries." Computational Linguistics, 30(4):451–477, 2004. doi:10.1162/0891201042544938
- S. Gerdjikov, S. Mihov, P. Mitankin, and K. U. Schulz. "WallBreaker — Overcoming the wall effect in similarity search." Joint EDBT/ICDT 2013 Workshops, pp. 366–369, 2013. (Full technical version: "Good parts first," arXiv:1301.0722.)
- A. Blumer, J. Blumer, D. Haussler, R. McConnell, and A. Ehrenfeucht. "Complete inverted files for efficient text retrieval and analysis." Journal of the ACM, 34(3):578–595, 1987. doi:10.1145/28869.28873
- S. Inenaga, H. Hoshino, A. Shinohara, M. Takeda, S. Arikawa, G. Mauri, and G. Pavesi. "On-line construction of compact directed acyclic word graphs." Discrete Applied Mathematics, 146(2):156–179, 2005. doi:10.1016/j.dam.2004.04.012
- A. Stefan, V. Athitsos, and G. Das. "The Move-Split-Merge Metric for Time Series." IEEE Transactions on Knowledge and Data Engineering, 25(6):1425–1438, 2013. doi:10.1109/TKDE.2012.88
- J. Aoe. "An Efficient Digital Search Algorithm by Using a Double-Array Structure." IEEE Transactions on Software Engineering, 15(9):1066–1077, 1989. doi:10.1109/32.31365
- V. Leis, A. Kemper, and T. Neumann. "The adaptive radix tree: ARTful indexing for main-memory databases." IEEE ICDE 2013, pp. 38–49. doi:10.1109/ICDE.2013.6544812
- B. H. Bloom. "Space/time trade-offs in hash coding with allowable errors." Communications of the ACM, 13(7):422–426, 1970. doi:10.1145/362686.362692
- H. A. Dau, A. Bagnall, K. Kamgar, C.-C. M. Yeh, Y. Zhu, S. Gharghabi, C. A. Ratanamahatana, and E. Keogh. "The UCR Time Series Archive." arXiv:1810.07758, 2018. arXiv
- Carnegie Mellon University. "The CMU Pronouncing Dictionary." cmusphinx/cmudict
- R. Mitton. "Birkbeck spelling error corpus." Oxford Text Archive, ota:0643, 1980. OTA record
Project documentation: algorithm research · implementation mapping · architecture · benchmarks · formal verification. Upstream: original Java implementation.
Licensed under the Apache License, Version 2.0. See LICENSE.