OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UnionFst
(Results
1 - 3
of
3
) sorted by null
/external/openfst/src/include/fst/
union.h
132
class
UnionFst
: public RationalFst<A> {
140
UnionFst
(const Fst<A> &fst1, const Fst<A> &fst2) {
144
UnionFst
(const Fst<A> &fst1, const Fst<A> &fst2, const UnionFstOptions &opts)
150
UnionFst
(const
UnionFst
<A> &fst, bool safe = false)
153
// Get a copy of this
UnionFst
. See Fst<>::Copy() for further doc.
154
virtual
UnionFst
<A> *Copy(bool safe = false) const {
155
return new
UnionFst
<A>(*this, safe);
160
// Specialization for
UnionFst
.
162
class StateIterator<
UnionFst
<A> > : public StateIterator< RationalFst<A> >
[
all
...]
fst-decl.h
68
template <class A> class
UnionFst
;
110
typedef
UnionFst
<StdArc> StdUnionFst;
/external/openfst/src/test/
algo_test.h
92
UnionFst
<Arc> U2(T1, T2);
140
UnionFst
<Arc> U1(T1, T2);
141
UnionFst
<Arc> U2(U1, T3);
143
UnionFst
<Arc> U3(T2, T3);
144
UnionFst
<Arc> U4(T1, U3);
152
UnionFst
<Arc> U1(T1, T2);
155
UnionFst
<Arc> U3(T2, T3);
156
UnionFst
<Arc> U4(T1, U3);
236
UnionFst
<Arc> U1(T1, T2);
241
UnionFst
<Arc> U2(C2, C3)
[
all
...]
Completed in 118 milliseconds