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

  /external/openfst/src/include/fst/
visit.h 200 CopyVisitor(MutableFst<Arc> *ofst) : ifst_(0), ofst_(ofst) {}
203 ifst_ = &ifst;
205 ofst_->SetStart(ifst_->Start());
230 ofst_->SetFinal(s, ifst_->Final(s));
236 const Fst<Arc> *ifst_; member in class:fst::CopyVisitor
randgen.h 614 ifst_ = &ifst;
627 if (ifst_->Final(arc.nextstate) == Weight::Zero()) {
647 if (p != kNoStateId && ifst_->Final(s) == Weight::Zero())
670 const Fst<IArc> *ifst_; member in class:fst::RandGenVisitor
  /external/openfst/src/include/fst/extensions/pdt/
shortest-path.h 396 ifst_(ifst.Copy()),
418 VLOG(1) << "# of input states: " << CountStates(*ifst_);
421 delete ifst_;
467 Fst<Arc> *ifst_; member in class:fst::PdtShortestPath
489 ofst->SetInputSymbols(ifst_->InputSymbols());
490 ofst->SetOutputSymbols(ifst_->OutputSymbols());
492 if (ifst_->Start() == kNoStateId)
504 for (StateIterator<Fst<Arc> > siter(*ifst_); !siter.Done(); siter.Next()) {
506 for (ArcIterator<Fst<Arc> > aiter(*ifst_, s);
554 if (ifst_->Final(s.state) != Weight::Zero() && s.start == start_)
    [all...]
expand.h 354 : ifst_(ifst.Copy()),
360 Reverse(*ifst_, parens, &rfst_);
373 delete ifst_;
464 Fst<A> *ifst_; // Input PDT member in class:fst::PrunedExpand
492 // 'dest_map_' maps a state 's' in 'ifst_' that is the source
527 for (StateIterator<Fst<Arc> > siter(*ifst_); !siter.Done(); siter.Next()) {
529 for (ArcIterator<Fst<Arc> > aiter(*ifst_, s);
545 // in 'ifst_', 'dest' must be the source state of a close paren arc.
603 // Sets the PDT "source" state of state 's' in 'ofst_' to state 'p' in 'ifst_'.
656 if (cached_source_ != ifst_->Start())
    [all...]

Completed in 239 milliseconds