liblevenshtein 4.0.0
A library for generating Finite State Transducers based on Levenshtein Automata.
|
#include <vector>
#include "liblevenshtein/transducer/algorithm.h"
#include "liblevenshtein/transducer/position.h"
#include "liblevenshtein/transducer/state.h"
Go to the source code of this file.
Namespaces | |
namespace | liblevenshtein |
Various utilities regarding Levenshtein transducers. | |
Functions | |
void | liblevenshtein::insert_after (State *state, Position *curr, Position *next) |
Inserts one Position after another. | |
template<Algorithm Type> | |
void | liblevenshtein::merge (State *state, const std::vector< Position * > &positions) |
Merges a list of Positions into the Levenshtein state. | |