OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ClosureFst
(Results
1 - 3
of
3
) sorted by null
/external/openfst/src/include/fst/
closure.h
104
class
ClosureFst
: public RationalFst<A> {
110
ClosureFst
(const Fst<A> &fst, ClosureType closure_type) {
114
ClosureFst
(const Fst<A> &fst, const ClosureFstOptions &opts)
120
ClosureFst
(const
ClosureFst
<A> &fst, bool safe = false)
123
// Get a copy of this
ClosureFst
. See Fst<>::Copy() for further doc.
124
virtual
ClosureFst
<A> *Copy(bool safe = false) const {
125
return new
ClosureFst
<A>(*this, safe);
130
// Specialization for
ClosureFst
.
132
class StateIterator<
ClosureFst
<A> > : public StateIterator< RationalFst<A> >
[
all
...]
fst-decl.h
55
template <class A> class
ClosureFst
;
98
typedef
ClosureFst
<StdArc> StdClosureFst;
/external/openfst/src/test/
algo_test.h
112
ClosureFst
<Arc> C2(T1, CLOSURE_STAR);
120
ClosureFst
<Arc> C2(T1, CLOSURE_PLUS);
288
ClosureFst
<Arc> S(T1, CLOSURE_STAR);
291
ClosureFst
<Arc> P(T1, CLOSURE_PLUS);
298
ClosureFst
<Arc> S(T1, CLOSURE_STAR);
301
ClosureFst
<Arc> P(T1, CLOSURE_PLUS);
954
ClosureFst
<Arc> S(A1, CLOSURE_STAR);
[
all
...]
Completed in 88 milliseconds