liblevenshtein 4.0.0
A library for generating Finite State Transducers based on Levenshtein Automata.
Loading...
Searching...
No Matches
algorithm.h
Go to the documentation of this file.
1#ifndef LIBLEVENSHTEIN_TRANSDUCER_ALGORITHM_H
2#define LIBLEVENSHTEIN_TRANSDUCER_ALGORITHM_H
3
4namespace liblevenshtein {
5
9enum class Algorithm {
10
14
18
22};
23
24} // namespace liblevenshtein
25
26#endif // LIBLEVENSHTEIN_TRANSDUCER_ALGORITHM_H
Various utilities regarding Levenshtein transducers.
Definition namespaces.dox:9
Algorithm
Enumerates the available Levenshtein distance algorithms.
Definition algorithm.h:9
@ MERGE_AND_SPLIT
Standard Levenshtein distance extended with the elementary operations of merge and split.
@ STANDARD
Standard Levenshtein distance, including the elementary operations of insertion, deletion,...
@ TRANSPOSITION
Standard Levenshtein distance extended with the elementary operation of transposition.