rustfst 1.3.0

Library for constructing, combining, optimizing, and searching weighted finite-state transducers (FSTs).
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::Label;

mod simple_transducer;
mod tropical_weight;
mod vector_fst;

static MAX_NUM_OPERATIONS: usize = 30;
static MAX_ILABEL: Label = 10;
static MAX_OLABEL: Label = 10;
static MAX_WEIGHT_VALUE: usize = 10;