Home | History | Annotate | Download | only in fst

Lines Matching defs:Arc

24 #include <fst/arc-map.h>
30 // Mapper to implement inversion of an arc.
34 A operator()(const A &arc) {
35 return A(arc.olabel, arc.ilabel, arc.weight, arc.nextstate);
55 template<class Arc> inline
56 void Invert(MutableFst<Arc> *fst) {
59 ArcMap(fst, InvertMapper<Arc>());
74 // time and to visit an input state or arc is assumed and exclusive
79 typedef A Arc;