OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ClosureFst
(Results
1 - 2
of
2
) 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
...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
closure.h
96
class
ClosureFst
: public RationalFst<A> {
102
ClosureFst
(const Fst<A> &fst, ClosureType closure_type) {
106
ClosureFst
(const Fst<A> &fst, const ClosureFstOptions &opts)
111
ClosureFst
(const
ClosureFst
<A> &fst) : RationalFst<A>(fst) {}
113
virtual
ClosureFst
<A> *Copy() const { return new
ClosureFst
<A>(*this); }
117
// Specialization for
ClosureFst
.
119
class StateIterator<
ClosureFst
<A> > : public StateIterator< RationalFst<A> > {
121
explicit StateIterator(const
ClosureFst
<A> &fst
[
all
...]
Completed in 23 milliseconds