Home
last modified time | relevance | path

Searched refs:DfsState (Results 1 – 1 of 1) sorted by relevance

/external/openfst/src/include/fst/
Ddfs-visit.h74 struct DfsState { struct
77 DfsState(const Fst<Arc> &fst, StateId s): state_id(s), arc_iter(fst, s) {} in DfsState() argument
104 stack<DfsState<Arc> *> state_stack; // DFS execution stack in DfsVisit()
122 state_stack.push(new DfsState<Arc>(fst, root)); in DfsVisit()
125 DfsState<Arc> *dfs_state = state_stack.top(); in DfsVisit()
137 DfsState<Arc> *parent_state = state_stack.top(); in DfsVisit()
163 state_stack.push(new DfsState<Arc>(fst, arc.nextstate)); in DfsVisit()