Searched defs:DfsState (Results 1 - 2 of 2) sorted by relevance

/external/openfst/src/include/fst/
H A Ddfs-visit.h74 struct DfsState { struct in namespace:fst
77 DfsState(const Fst<Arc> &fst, StateId s): state_id(s), arc_iter(fst, s) {} function in struct:fst::DfsState
104 stack<DfsState<Arc> *> state_stack; // DFS execution stack
122 state_stack.push(new DfsState<Arc>(fst, root));
125 DfsState<Arc> *dfs_state = state_stack.top();
137 DfsState<Arc> *parent_state = state_stack.top();
163 state_stack.push(new DfsState<Arc>(fst, arc.nextstate));
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Ddfs-visit.h64 struct DfsState { struct in namespace:fst
67 DfsState(const Fst<Arc> &fst, StateId s): state_id(s), arc_iter(fst, s) {} function in struct:fst::DfsState
89 stack<DfsState<Arc> *> state_stack; // DFS execution stack
102 state_stack.push(new DfsState<Arc>(fst, root));
105 DfsState<Arc> *dfs_state = state_stack.top();
113 DfsState<Arc> *parent_state = state_stack.top();
135 state_stack.push(new DfsState<Arc>(fst, arc.nextstate));

Completed in 921 milliseconds