Approximate string matching that scales with matches, not dictionary size. Instead of computing an edit distance against every entry, liblevenshtein represents the query $W$ and an error bound $k$ as a Levenshtein automaton — the set of still-viable $\langle \text{position}, \text{errors}\rangle$ states that together accept exactly the strings within distance $k$ of $W$ — and walks it in lock-step with the dictionary (a trie/DAWG), advancing both together and pruning a branch the instant no automaton state survives. The automaton is simulated and determinized lazily: only state/class transitions reached by the dictionary walk are materialized, never an eager standalone table. Per-query setup is $\mathcal{O}(\lvert W\rvert)$; the first computation of a transition costs $\mathcal{O}(k)$ — a constant for fixed $k$ — and repeated transitions are table lookups, so total work tracks the explored near-match frontier rather than the size of the dictionary.
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].
The Levenshtein (edit) distance $d(W, s)$ between two strings is the minimum number of single-character insertions, deletions, and substitutions that turn $W$ into $s$. The textbook way to compute it fills a dynamic-programming matrix (Wagner–Fischer [3]):
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 $D$ this way costs $\mathcal{O}(\lvert D\rvert \cdot \lvert W\rvert \cdot \lvert s\rvert)$ — you re-pay the $\lvert W\rvert$ factor for every entry. The automaton approach avoids that:
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.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 |
|---|---|
$\Sigma$ | the alphabet (bytes u8, Unicode scalars char/u32, or arbitrary u64 labels) |
$W$, $\lvert W\rvert$ | the query (pattern) string and its length |
$s$ | a candidate string drawn from the dictionary |
$D$, $\lvert D\rvert$ | the dictionary and its number of edges (transitions) |
$k$ | the maximum edit distance / error bound |
$d(W, s)$ | edit distance between $W$ and $s$ |
| edit operations | insertion, deletion, substitution (+ transposition, merge/split — see below) |
position $\langle i, e\rangle$ | automaton state: $i$ characters of $W$ consumed, $e$ edits spent ($e \le k$) |
characteristic vector $\chi$ | bit pattern marking where the input symbol matches inside $W$'s active window |
| 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 $\mathcal{O}(1)$-per-transition lookups (Aoe [11]) |
| 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.10"
# 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 ($k \ge 5$) | 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):
*Char variants matter (UTF-8 correctness)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 | $\mathcal{O}(1)$ per transition, fastest queries; read-only after build (the only static backend) |
| DynamicDawg [8] | dynamic ASCII dictionaries | immutable path copies, wait-free snapshot reads, lock-free root CAS |
| DynamicDawgU64 | large 64-bit label spaces | identifiers, hashes, compound keys; immutable path copies and lock-free root CAS |
| 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()); // absent
The 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 | optimal string alignment: add an adjacent swap (restricted Damerau [4]) | typing errors (teh → the costs 1) |
| DamerauLevenshtein | unrestricted history-composing adjacent swaps [22] | overlapping edits; metric transposition distance (CA → ABC costs 2) |
| 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 true_damerau = Transducer::new(dict.clone(), Algorithm::DamerauLevenshtein);
let merge_split = Transducer::new(dict, Algorithm::MergeAndSplit); // rn↔m = 1
The parameterized affine-gap surface is separate because its gap-open, gap-extension, and substitution costs are query parameters:
use libdictenstein::double_array_trie::DoubleArrayTrie;
use liblevenshtein::transducer::{AffineGapParams, Algorithm, Transducer};
let dict = DoubleArrayTrie::from_terms(["a", "abcd"]);
let transducer = Transducer::new(dict, Algorithm::Standard);
let costs = AffineGapParams::new(3.0, 2.0, 10.0).expect("exact decimal costs");
let result = transducer
.query_affine("a", 9.0, costs)
.expect("exact decimal budget")
.find(|candidate| candidate.term == "abcd")
.expect("one length-three gap costs 3 + 3*2");
assert_eq!(result.distance, 9.0);
Affine gaps use a three-layer state machine derived from Gotoh [23]; see the literate algorithm and verification map.
A state is a set of positions $\langle i, e\rangle$ ($i$ chars of $W$ matched, $e$ errors spent). Reading a candidate symbol $x$ advances every position in lock-step; the four elementary edits are exactly the colored edges below.
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 $i = \lvert W\rvert$; that position's $e$ is the match distance. Because the update depends only on $\chi$, one fixed transition rule (independent of $W$) serves every query. This crate simulates the deterministic Levenshtein automaton's states — reduced sets of positions, kept minimal by subsumption — directly during the dictionary walk: this is Schulz & Mihov's imitation method [1]. The default query path memoizes only the state/class cells it actually reaches. Eligible short Standard queries use an exact-cost bit-packed lazy DFA; the remaining algorithms use the same demand-driven scheme over positional frontiers. The pseudocode above is the recurrence computed on each cache miss. (A separate eager universal automaton, and the bit-vector universal construction of Mitankin et al. [2], remain alternatives rather than the default 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.
Alignment-expressible presets — use direct Unicode-scalar references or evaluate the identical operations through the exact generalized grid:
use liblevenshtein::distance::{hamming_distance, indel_distance};
use liblevenshtein::transducer::generalized::GeneralizedAutomaton;
use liblevenshtein::transducer::OperationSet;
assert_eq!(hamming_distance("abc", "bca"), Some(3));
assert_eq!(hamming_distance("abc", "ab"), None);
assert_eq!(indel_distance("a", "b"), 2);
let skip = GeneralizedAutomaton::try_with_operations(2, OperationSet::bounded_skip())?;
assert_eq!(skip.scaled_distance("crate", "cat")?, Some(2));
# Ok::<(), Box<dyn std::error::Error>>(())
Hamming, indel, and directional bounded skip are OperationSet
configurations, not separate lazy dictionary automata. Generated sets should
cross OperationSet::validate() before use. See the
Class-A design.
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 $\lvert \Delta\rvert$), Split one element into two equal copies, and Merge two equal adjacent elements (Split/Merge share a configurable cost $c$). Unlike DTW it obeys the triangle inequality, so it can support metric-tree indexes, and it is robust to temporal misalignment. This crate's trie walker has a separate correctness argument: interval-relaxed columns lower-bound every concrete descendant, step costs are non-negative, and surviving candidates are re-scored exactly. The cost obeys the recurrence
\mathrm{Cost}(i, j) = \min \begin{cases}
\mathrm{Cost}(i-1, j-1) + \lvert x_i - y_j\rvert & \text{(Move)} \\
\mathrm{Cost}(i-1, j) + \mathrm{splitmerge}(x_i, x_{i-1}, y_j) & \text{(Split/Merge on } X\text{)} \\
\mathrm{Cost}(i, j-1) + \mathrm{splitmerge}(y_j, y_{j-1}, x_i) & \text{(Split/Merge on } Y\text{)}
\end{cases}
where $\mathrm{splitmerge}(a, b, c) = c$ when $a$ lies between $b$ and $c$, else $c + \min(\lvert a-b\rvert, \lvert a-c\rvert)$.
MsmTransducer is the source-compatible MSM specialization of the generic
ElasticTransducer<MsmKernel, V>. It indexes reference series in a quantized
trie and answers exact range and k-NN queries. Non-empty finite queries
walk the trie with an interval-relaxed MSM dynamic program; unsupported and
empty queries use deterministic exact scoring. K1–K4 lower-bound and exactness
obligations ensure that no true neighbor is pruned and every reported distance
is recomputed at full precision. See the
design contract and
literate algorithm:
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.
ERP [17] aligns real-valued sequences using absolute match
cost and a fixed real gap value. ErpTransducer reuses the same exact trie
walker with an ERP interval recurrence and gap-mass candidate bound:
use liblevenshtein::time_series::{ErpConfig, ErpTransducer, QuantizationConfig};
let references = vec![vec![1.0, 2.0], vec![1.0, 0.0, 2.0], vec![9.0]];
let index = ErpTransducer::from_series(
QuantizationConfig::for_u8(-10.0, 10.0),
ErpConfig::new(0.0),
&references,
);
let zero_distance = index.search_range(&[1.0, 2.0], 0.0);
assert_eq!(zero_distance.len(), 2); // inserting the gap value 0 costs zero
ERP is a pseudometric on raw sequences: adding or removing $g$ costs zero.
Identity holds after quotienting sequences by removal of $g$. See the
paper analysis,
design contract, and
literate algorithm.
TWED [21] compares adjacent segments and penalizes temporal
displacement. The public scalar specialization uses unit-spaced timestamps,
stiffness $\nu$, deletion penalty $\lambda$, and a zero sentinel.
Validate the strict metric premise when metric-dependent generic code is in
scope:
use liblevenshtein::time_series::{
MetricTwedConfig, MetricTwedTransducer, QuantizationConfig,
};
let references = vec![
vec![0.0, 1.0, 2.0],
vec![0.0, 2.0, 3.0],
vec![8.0, 9.0],
];
let kernel = MetricTwedConfig::try_new(0.5, 1.0).unwrap();
let index = MetricTwedTransducer::from_series(
QuantizationConfig::for_u8(0.0, 10.0),
kernel,
&references,
);
assert_eq!(index.search_range(&[0.0, 1.0, 2.0], 0.0), vec![(0, 0.0)]);
The unrestricted TwedConfig also permits $\nu=0$; it is deliberately
labelled non-metric because $D([0,1],[1])=0$ at
$\nu=\lambda=0$. Only MetricTwedConfig, which requires finite
$\nu>0$ and $\lambda\ge0$, implements MetricElasticKernel. Exact trie
pruning remains valid for either type through carry-aware interval columns,
the $\lvert m-n\rvert\lambda$ candidate bound, and full-precision survivor
scoring. See the source analysis,
formal evidence, and
security limits.
Banded DTW [19] uses squared local deviations inside a
required symmetric Sakoe–Chiba window [20]. DtwTransducer
keeps DP columns and LB_Keogh in squared units, but accepts thresholds and
returns scores in conventional square-root units:
use liblevenshtein::time_series::{
DtwConfig, DtwTransducer, QuantizationConfig,
};
let references = vec![
vec![0.0, 1.0, 2.0],
vec![0.0, 1.0, 1.0, 2.0],
vec![8.0, 9.0],
];
let index = DtwTransducer::from_series(
QuantizationConfig::for_u8(0.0, 10.0),
DtwConfig::new(1), // the band is required
&references,
);
let near = index.search_range(&[0.0, 1.0, 2.0], 0.25);
assert_eq!(near.len(), 2);
assert!(near.iter().all(|(_, distance)| *distance <= 0.25));
DTW is symmetric and non-negative but not a metric. Its code label is
DtwConfig::IS_METRIC = false, and it cannot satisfy the
MetricElasticKernel gate used by triangle-dependent indexes. The quantized
trie remains exact because monotonic-deque LB_Keogh, interval prefix bounds,
banded columns, and full-precision survivor scoring require no triangle
inequality. See the paper analysis,
formal evidence, and
security limits.
Discrete Fréchet [18] measures the shortest possible
longest link in an order-preserving coupling. It is the first production
BottleneckCost kernel: the generic walker is unchanged, while DP path
extension uses max instead of addition.
use liblevenshtein::time_series::{
FrechetConfig, FrechetTransducer, QuantizationConfig,
};
let references = vec![
vec![1.0, 2.0, 3.0],
vec![1.0, 1.0, 2.0, 3.0],
vec![8.0, 9.0],
];
let index = FrechetTransducer::from_series(
QuantizationConfig::for_u8(-10.0, 10.0),
FrechetConfig::new(),
&references,
);
let zero_distance = index.search_range(&[1.0, 2.0, 3.0], 0.0);
assert_eq!(zero_distance.len(), 2);
Consecutive duplicate samples are zero-cost stutters, so raw vectors form a pseudometric; identity holds after run-length collapse. Exactly one empty side has infinite distance, and non-finite samples are outside the exact domain. See the paper analysis, formal evidence, and literate algorithm.
The table below lists the completed, non-synthetic benchmark evidence in 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. Paired evidence was 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. |
Shared ElasticKernel flat/trie evaluation | The identical 51-dataset UCR/aeon slice [14] | Exact 1-NN plus prefix/column/candidate pruning economics for five fixed configurations | Accuracy was ERP 0.862149, MSM 0.847244, banded DTW 0.842010, TWED 0.799767, and discrete Fréchet 0.777665, versus majority 0.411807. Flat exact evaluations ranged from Fréchet's 311,921 to TWED's 1,221,307; trie exact evaluations ranged from Fréchet's 29,818 to TWED's 55,976. DTW rejected 93,727 edges before column construction. Every flat nearest distance matched the trie, all accounting identities passed, and paired McNemar results were significant for all five arms. See the complete preregistered ledger. |
| 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 $k$: the first $k$ steps must explore every prefix of length $\le k$, regardless of the data. At $k = 16$ that is ruinous. WallBreaker sidesteps it with the pigeonhole principle.
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 $p$ pieces? Spread $\le k$ edits across $p$ disjoint pieces. A Standard edit corrupts at most one piece, so $k + 1$ pieces guarantee a survivor that matches exactly; a transposition or merge/split can straddle a boundary and corrupt two, needing $2k + 1$. These bounds are proved in Coq/Rocq (WallBreakerPigeonhole.v).
Algorithm | Minimum pieces | Reason |
|---|---|---|
| Standard | $k + 1$ | each edit corrupts $\le 1$ piece |
| Transposition | $2k + 1$ | a swap can straddle a boundary |
| MergeAndSplit | $2k + 1$ | 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 $k$ this turns the exponential wall into a handful of $\mathcal{O}(\lvert piece\rvert)$ substring lookups; the project's design analysis projects ~2,000–3,300× over a plain transducer at $k \approx 16$ on a 750k-word lexicon (decision matrix). Use the plain transducer for short queries and small $k$ ($\le 3$); reach for WallBreaker when $k \ge 5$ or patterns exceed ~50 characters.
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 budget
The PhoneticGrep convenience API wraps this for one-off matching, with optional case/accent insensitivity ((?ia:cafe) matches CAFÉ).
.llev rewrite rulesA 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().
.llre fuzzy regular expressionsRegex 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 ∉ fricative
liblevenshtein'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 | $\text{age} > \text{duration}$ | session caches |
| Lru / Age | least-recently-used / FIFO | general / fair |
| Lfu | lowest access count | long-lived caches |
| CostAware | $(\text{age} \times \text{size}) \div (\text{hits} + 1)$ | balance regeneration cost vs. space |
| MemoryPressure | $\text{size} \div (\text{hit\_rate} + 0.1)$ | 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<_>>();
Binary persistence (serialization, protobuf, compression) — bincode for optimized
Rust storage, protobuf for portable interchange, and optional gzip around either byte stream.
Bincode/protobuf are compact encodings, not compression; gzip's size/latency trade-off must be
measured on representative artifacts. JSON, TOML, and other text persistence formats are not
supported:
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")?)?;
let operations = OperationSet::standard();
let portable = operations.to_protobuf()?;
assert_eq!(OperationSet::from_protobuf(&portable)?, operations);
# Ok::<(), Box<dyn std::error::Error>>(())
CLI and document grep — install the separate
liblevenshtein-cli
package. It owns the executable, REPL, filesystem traversal, compression,
archive, XML, office-document, PDF, and OCR dependencies.
WASM/WASI (wasm) — project-owned distance and phonetic exports used by
the shared @vinary-tree/vinary-tree runtime. Cross-project dictionary handles
are composed in that one runtime; the liblevenshtein npm package is a typed
facade rather than a second WebAssembly instance.
parallel-grep accelerates the reusable in-memory phonetic grep engines.
| Operation | Complexity |
|---|---|
| Per-query setup | $\mathcal{O}(\lvert W\rvert)$ — linear in query length |
| Per-symbol transition | $\mathcal{O}(k)$ — constant for fixed $k$ |
| Traversal | $\mathcal{O}(\lvert D\rvert)$ worst case — pruned to the near-match frontier in practice |
| Space | $\mathcal{O}(\lvert W\rvert)$ live states for fixed $k$ |
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). Dynamic DAWGs now favor immutable query-start snapshots and lock-free root publication over the older Bloom-filter/RwLock design measured by this historical benchmark; 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 $\mathcal{O}(1)$ copy-on-write snapshot and traversal descends $\mathcal{O}(1)$ per byte from the focus — no per-operation lock and no replay of the path from the root. Measured directly against the frozen pre-rework (path-replay) node, same bench (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 $\approx$ 1.5–1.6× full-query speedup and closes the gap to DynamicDawg from $\approx$ 1.5× to $\approx$ 1.0× — PathMap is now on par with the dynamic DAWG (DoubleArrayTrie stays the static-dictionary leader for read-only sets). Subtracting the backend-independent automaton floor (every backend shares the Transducer; DoubleArrayTrie $\approx$ floor), the node cost the rework actually controls drops 2.27× (2.86 → 1.26 ms at $k=1$, now $\approx$ DynamicDawg's node); the full-query figure is that gain diluted by the ~1.9 ms shared floor.
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 $\mathcal{O}(\text{depth})$ — it re-walks the path from the root, per operation and (for edges()) per child — while the TrieRef node is $\mathcal{O}(1)$ from its focus:
| node op (branching / deep) | old (path-replay) | new (TrieRef) | speedup |
|---|---|---|---|
transition() @ depth 40 | 182 ns ($\mathcal{O}(\text{depth})$) | 27 ns ($\mathcal{O}(1)$) | 6.7× |
edges() @ depth 32, fanout 8 | 1632 ns ($\mathcal{O}(w \cdot \text{depth})$) | 185 ns ($\mathcal{O}(w)$) | 8.8× |
char edges() @ depth 32, width 8 | 4.78 µs ($\mathcal{O}(w \cdot \text{depth})$) | 914 ns ($\mathcal{O}(w)$) | 5.2× |
root() snapshot | 7.6 ns | 47 ns | 0.16× |
The root() row is the rework's lone regression — an $\mathcal{O}(1)$ copy-on-write snapshot taken once per query, the one-time price that makes every subsequent op lock-free ($\ll 1$ µs, $< 0.01\%$ of a query). The two readings are complementary: on compressed / shallow structure the rework is a 1.4–2.4× constant-factor win (lock + per-op zipper re-creation removed); on branching / deep structure it is an unbounded $\mathcal{O}(\text{depth})$ win; a real dictionary is the blend that yields the 2.27× node-overhead reduction above. The rework also lets a caller fuzzy-query a borrowed or $\mathcal{O}(1)$-snapshotted 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 |
wasm | WebAssembly bindings |
bindings-core | language-neutral retained-resource transducer and streaming cursor model |
bindings-phonetic | project-owned phonetic pattern/rule bindings over bindings-core |
ffi | stable native C ABI consuming vinary-tree-interop resources |
*-bindings | descriptive opt-in aliases selecting a boundary; no alias compiles another language runtime or moves dictionary CRUD into this crate |
parallel-grep | parallel in-memory phonetic matching |
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.)
Project documentation: algorithm research · implementation mapping · architecture · benchmarks · formal verification. Upstream: original Java implementation.
Licensed under the Apache License, Version 2.0. See LICENSE.
Can you improve this documentation?Edit on GitHub
cljdoc builds & hosts documentation for Clojure/Script libraries
| Ctrl+k | Jump to recent docs |
| ← | Move to previous article |
| → | Move to next article |
| Ctrl+/ | Jump to the search field |