Module rustfst::algorithms::union
source · Expand description
Functions to compute the union of FSTs.
Structs
- Computes the union (sum) of two FSTs. This version is a delayed FST. If A transduces string x to y with weight a and B transduces string w to v with weight b, then their union transduces x to y with weight a and w to v with weight b.
Functions
- Performs the union of two wFSTs. If A transduces string
xtoywith weightaandBtransduces stringwtovwith weightb, then their union transducesxtoywith weightaandwtovwith weightb.