HomeSort by relevance Sort by last modified time
    Searched refs:DfsState (Results 1 - 2 of 2) sorted by null

  /external/srec/tools/thirdparty/OpenFst/fst/lib/
dfs-visit.h 64 struct DfsState {
67 DfsState(const Fst<Arc> &fst, StateId s): state_id(s), arc_iter(fst, s) {}
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));
  /external/openfst/src/include/fst/
dfs-visit.h 74 struct DfsState {
77 DfsState(const Fst<Arc> &fst, StateId s): state_id(s), arc_iter(fst, s) {}
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));

Completed in 469 milliseconds