OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IntersectFst
(Results
1 - 5
of
5
) sorted by null
/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
...]
fst-decl.h
46
template <class A> class
IntersectFst
;
69
typedef
IntersectFst
<StdArc> StdIntersectFst;
/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
...]
fst-decl.h
61
template <class A> class
IntersectFst
;
104
typedef
IntersectFst
<StdArc> StdIntersectFst;
/external/openfst/src/test/
algo_test.h
512
IntersectFst
<Arc> I1(A1, A2);
513
IntersectFst
<Arc> I2(A2, A1);
975
IntersectFst
<Arc> I1(S1, S2);
982
IntersectFst
<Arc> I1(S1, S2);
988
IntersectFst
<Arc> I2(U2, S4);
1009
IntersectFst
<Arc> I(S1, C1);
1017
IntersectFst
<Arc> I(S1, S2);
1025
IntersectFst
<Arc> I(C1, C2);
1121
IntersectFst
<StdArc> ifsa(vfsa1, vfsa2);
[
all
...]
Completed in 58 milliseconds