OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:DifferenceFst
(Results
1 - 2
of
2
) sorted by null
/external/openfst/src/include/fst/
difference.h
60
class
DifferenceFst
: public ComposeFst<A> {
72
DifferenceFst
(const Fst<A> &fst1, const Fst<A> &fst2,
84
FSTERROR() << "
DifferenceFst
: 1st argument not an acceptor";
90
DifferenceFst
(const Fst<A> &fst1, const Fst<A> &fst2,
104
FSTERROR() << "
DifferenceFst
: 1st argument not an acceptor";
110
DifferenceFst
(const
DifferenceFst
<A> &fst, bool safe = false)
113
// Get a copy of this
DifferenceFst
. See Fst<>::Copy() for further doc.
114
virtual
DifferenceFst
<A> *Copy(bool safe = false) const {
115
return new
DifferenceFst
<A>(*this, safe)
[
all
...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
difference.h
44
class
DifferenceFst
: public ComposeFst<A> {
53
DifferenceFst
(const Fst<A> &fst1, const Fst<A> &fst2)
58
LOG(FATAL) << "
DifferenceFst
: 1st argument not an acceptor";
66
DifferenceFst
(const Fst<A> &fst1, const Fst<A> &fst2,
72
LOG(FATAL) << "
DifferenceFst
: 1st argument not an acceptor";
79
DifferenceFst
(const
DifferenceFst
<A> &fst)
82
virtual
DifferenceFst
<A> *Copy() const {
83
return new
DifferenceFst
<A>(*this);
88
// Specialization for
DifferenceFst
[
all
...]
Completed in 56 milliseconds