Home | History | Annotate | Download | only in fst

Lines Matching defs:Arc

24 #include <fst/arc-map.h>
34 // Mapper to implement projection per arc.
40 A operator()(const A &arc) {
42 ? arc.ilabel : arc.olabel;
43 return A(label, label, arc.weight, arc.nextstate);
76 template<class Arc> inline
77 void Project(MutableFst<Arc> *fst, ProjectType project_type) {
78 ArcMap(fst, ProjectMapper<Arc>(project_type));
86 // Projects an FST onto its domain or range by either copying each arc's
94 // time and to visit an input state or arc is assumed and exclusive
99 typedef A Arc;