Module rustfst::algorithms::concat

source ·
Expand description

Functions to concatenate FSTs.

Structs§

  • Computes the concatenation (product) of two FSTs; this version is a delayed FST. If FST1 transduces string x to y with weight a and FST2 transduces string w to v with weight b, then their concatenation transduces string xw to yv with Times(a, b).

Functions§

  • Performs the concatenation of two wFSTs. If A transduces string x to y with weight a and B transduces string w to v with weight b, then their concatenation transduces string xw to yv with weight a ⊗ b.