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

  /external/openfst/src/include/fst/
intersect.h 58 class IntersectFst : public ComposeFst<A> {
70 IntersectFst(const Fst<A> &fst1, const Fst<A> &fst2,
76 FSTERROR() << "IntersectFst: input FSTs are not acceptors";
82 IntersectFst(const Fst<A> &fst1, const Fst<A> &fst2,
88 FSTERROR() << "IntersectFst: input FSTs are not acceptors";
94 IntersectFst(const IntersectFst<A> &fst, bool safe = false) :
97 // Get a copy of this IntersectFst. See Fst<>::Copy() for further doc.
98 virtual IntersectFst<A> *Copy(bool safe = false) const {
99 return new IntersectFst<A>(*this, safe)
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
intersect.h 41 class IntersectFst : public ComposeFst<A> {
49 IntersectFst(const Fst<A> &fst1, const Fst<A> &fst2)
52 LOG(FATAL) << "IntersectFst: arguments not both acceptors";
60 IntersectFst(const Fst<A> &fst1, const Fst<A> &fst2,
64 LOG(FATAL) << "IntersectFst: arguments not both acceptors";
71 IntersectFst(const IntersectFst<A> &fst) : ComposeFst<A>(fst) {}
73 virtual IntersectFst<A> *Copy() const {
74 return new IntersectFst<A>(*this);
79 // Specialization for IntersectFst
    [all...]

Completed in 25 milliseconds