OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:state_stack
(Results
1 - 2
of
2
) sorted by null
/external/srec/tools/thirdparty/OpenFst/fst/lib/
dfs-visit.h
89
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));
/external/openfst/src/include/fst/
dfs-visit.h
104
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));
Completed in 89 milliseconds