1#ifndef LIBLEVENSHTEIN_TRANSDUCER_DISTANCE_H
2#define LIBLEVENSHTEIN_TRANSDUCER_DISTANCE_H
20template <Algorithm Type>
67 std::size_t query_length)
Consists of a closure of Position nodes within the Levenshtein automaton.
Various utilities regarding Levenshtein transducers.
auto distance< Algorithm::STANDARD >(State *state, std::size_t query_length) -> std::size_t
Infers the Levenshtein distance from the given State and query length for the standard Levenshtein di...
auto distance< Algorithm::TRANSPOSITION >(State *state, std::size_t query_length) -> std::size_t
Infers the Levenshtein distance from the given State and query length for the standard Levenshtein di...
auto distance(State *state, std::size_t query_length) -> std::size_t
Infers the Levenshtein distance from the given State and query length.
auto distance< Algorithm::MERGE_AND_SPLIT >(State *state, std::size_t query_length) -> std::size_t
Infers the Levenshtein distance from the given State and query length for the standard Levenshtein di...