HomeSort by relevance Sort by last modified time
    Searched defs:scc (Results 1 - 3 of 3) sorted by null

  /external/openfst/src/include/fst/
rmepsilon.h 277 vector<StateId> scc; local
278 SccVisitor<Arc> scc_visitor(&scc, 0, 0, &props);
280 vector<StateId> first(scc.size(), kNoStateId);
281 vector<StateId> next(scc.size(), kNoStateId);
282 for (StateId i = 0; i < scc.size(); i++) {
283 if (first[scc[i]] != kNoStateId)
284 next[i] = first[scc[i]];
285 first[scc[i]] = i;
  /external/openfst/src/include/fst/script/
info-impl.h 135 vector<StateId> scc; local
138 SccVisitor<Arc> scc_visitor(&scc, &access, &coaccess, &props);
152 for (StateId s = 0; s < scc.size(); ++s) {
159 if (scc[s] >= nscc_)
160 nscc_ = scc[s] + 1;
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
rmepsilon.h 228 vector<StateId> scc; local
229 SccVisitor<Arc> scc_visitor(&scc, 0, 0, &props);
231 vector<StateId> first(scc.size(), kNoStateId);
232 vector<StateId> next(scc.size(), kNoStateId);
233 for (StateId i = 0; i < (StateId)scc.size(); i++) {
234 if (first[scc[i]] != kNoStateId)
235 next[i] = first[scc[i]];
236 first[scc[i]] = i;

Completed in 223 milliseconds