Searched refs:state_stack (Results 1 - 2 of 2) sorted by relevance

/external/openfst/src/include/fst/
H A Ddfs-visit.h104 stack<DfsState<Arc> *> state_stack; // DFS execution stack local
122 state_stack.push(new DfsState<Arc>(fst, root));
124 while (!state_stack.empty()) {
125 DfsState<Arc> *dfs_state = state_stack.top();
135 state_stack.pop();
136 if (!state_stack.empty()) {
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.h89 stack<DfsState<Arc> *> state_stack; // DFS execution stack local
102 state_stack.push(new DfsState<Arc>(fst, root));
104 while (!state_stack.empty()) {
105 DfsState<Arc> *dfs_state = state_stack.top();
111 state_stack.pop();
112 if (!state_stack.empty()) {
113 DfsState<Arc> *parent_state = state_stack.top();
135 state_stack.push(new DfsState<Arc>(fst, arc.nextstate));

Completed in 142 milliseconds