pub struct LevenshteinAutomatonBuilder { /* private fields */ }
Expand description

Builder for Levenshtein Automata.

It wraps a precomputed datastructure that allows to produce small (but not minimal) DFA.

Implementations

Creates a Levenshtein automaton builder. The builder

  • max_distance - maximum distance considered by the automaton.
  • transposition_cost_one - assign a distance of 1 for transposition

Building this automaton builder is computationally intensive. While it takes only a few milliseconds for d=2, it grows exponentially with d. It is only reasonable to d <= 5.

Builds a Finite Determinstic Automaton to compute the levenshtein distance to a fixed given query.

There is no guarantee that the resulting DFA is minimal but its number of states is guaranteed to be smaller than C * (query.len() + 1) in which C is a constant that depends on the distance as well as whether transposition are supported or not.

For instance for d=2 and with transposition, C=68.

Builds a Finite Determinstic Automaton that computes the prefix levenshtein distance to a given query.

Given a test string, the resulting distance is defined as

    min( levenshtein(&test_string[..i], query } for i in 0..test_string.len() )

Which translates as the minimum distance of the prefixes of test_strings.

See also .build_dfa(…).

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.