Searched refs:fst (Results 51 - 75 of 404) sorted by relevance

1234567891011>>

/external/openfst/src/bin/
H A Dfsttopsort.cc23 #include <fst/script/topsort.h>
26 namespace s = fst::script;
27 using fst::script::FstClass;
28 using fst::script::MutableFstClass;
32 usage += " [in.fst [out.fst]]\n";
44 MutableFstClass *fst = MutableFstClass::Read(in_fname, true); local
45 if (!fst) return 1;
47 bool acyclic = TopSort(fst);
50 fst
[all...]
H A Dfstcompose.cc23 #include <fst/script/compose.h>
24 #include <fst/script/connect.h>
34 namespace s = fst::script;
35 using fst::script::FstClass;
36 using fst::script::MutableFstClass;
37 using fst::script::VectorFstClass;
41 usage += " in1.fst in2.fst [out.fst]\n";
72 fst
[all...]
H A Dfstdifference.cc23 #include <fst/script/difference.h>
24 #include <fst/script/connect.h>
32 namespace s = fst::script;
33 using fst::script::FstClass;
34 using fst::script::MutableFstClass;
35 using fst::script::VectorFstClass;
39 usage += " in1.fst in2.fst [out.fst]\n";
64 fst
[all...]
H A Dfstprune.cc23 #include <fst/script/prune.h>
25 DEFINE_double(delta, fst::kDelta, "Comparison/quantization delta");
26 DEFINE_int64(nstate, fst::kNoStateId, "State number threshold");
31 namespace s = fst::script;
32 using fst::script::FstClass;
33 using fst::script::MutableFstClass;
34 using fst::script::WeightClass;
38 usage += " [in.fst [out.fst]]\n";
50 MutableFstClass *fst local
[all...]
H A Dfstrmepsilon.cc23 #include <fst/script/rmepsilon.h>
26 DEFINE_double(delta, fst::kDelta, "Comparison/quantization delta");
27 DEFINE_int64(nstate, fst::kNoStateId, "State number threshold");
34 namespace s = fst::script;
35 using fst::script::FstClass;
36 using fst::script::MutableFstClass;
37 using fst::script::VectorFstClass;
38 using fst::script::WeightClass;
42 usage += " [in.fst [out.fst]]\
[all...]
H A Dfstshortestpath.cc22 #include <fst/script/shortest-path.h>
24 DEFINE_double(delta, fst::kDelta, "Comparison/quantization delta");
28 DEFINE_int64(nstate, fst::kNoStateId, "State number threshold");
33 namespace s = fst::script;
34 using fst::script::FstClass;
35 using fst::script::MutableFstClass;
36 using fst::script::VectorFstClass;
37 using fst::script::WeightClass;
41 usage += " [in.fst [out.fst]]\
[all...]
/external/openfst/src/include/fst/script/
H A Darcsort.h20 #include <fst/arcsort.h>
21 #include <fst/script/arg-packs.h>
22 #include <fst/script/fst-class.h>
24 namespace fst { namespace
33 MutableFst<Arc> *fst = args->arg1->GetMutableFst<Arc>(); local
37 ArcSort(fst, icomp);
40 ArcSort(fst, ocomp);
47 } // namespace fst
H A Dinfo.h20 #include <fst/script/arg-packs.h>
21 #include <fst/script/fst-class.h>
22 #include <fst/script/info-impl.h>
24 namespace fst { namespace
32 const Fst<Arc> &fst = *(args->arg1.GetFst<Arc>()); local
33 FstInfo<Arc> fstinfo(fst, args->arg2, args->arg3,
38 fst.Write("");
46 } // namespace fst
H A Dcompile.h20 #include <fst/script/arg-packs.h>
21 #include <fst/script/fst-class.h>
22 #include <fst/script/compile-impl.h>
24 namespace fst { namespace
32 fst::istream &istrm;
36 const fst::SymbolTable *isyms;
37 const fst::SymbolTable *osyms;
38 const fst::SymbolTable *ssyms;
46 const string &fst_type, const fst
69 const Fst<Arc> *fst = &fstcompiler.Fst(); local
[all...]
H A Dproject.h20 #include <fst/script/arg-packs.h>
21 #include <fst/script/fst-class.h>
22 #include <fst/project.h> // for ProjectType
24 namespace fst { namespace
39 } // namespace fst
H A Dreverse.h20 #include <fst/script/arg-packs.h>
21 #include <fst/script/fst-class.h>
22 #include <fst/reverse.h>
24 namespace fst { namespace
40 } // namespace fst
H A Dsynchronize.h20 #include <fst/script/arg-packs.h>
21 #include <fst/script/fst-class.h>
22 #include <fst/synchronize.h>
24 namespace fst { namespace
40 } // namespace fst
H A Dunion.h20 #include <fst/script/arg-packs.h>
21 #include <fst/script/fst-class.h>
22 #include <fst/union.h>
24 namespace fst { namespace
40 } // namespace fst
/external/openfst/src/script/
H A Ddraw.cc19 #include <fst/script/fst-class.h>
20 #include <fst/script/draw.h>
21 #include <fst/script/script-impl.h>
23 namespace fst { namespace
26 void DrawFst(const FstClass &fst, argument
43 FstDrawerArgs args(fst, isyms, osyms, ssyms, accep, title, width,
47 Apply<Operation<FstDrawerArgs> >("DrawFst", fst.ArcType(), &args);
55 } // namespace fst
H A Dprint.cc19 #include <fst/script/fst-class.h>
20 #include <fst/script/script-impl.h>
21 #include <fst/script/print.h>
23 namespace fst { namespace
26 void PrintFst(const FstClass &fst, ostream &ostrm, const string &dest, argument
31 FstPrinterArgs args(fst, isyms, osyms, ssyms, accept, show_weight_one,
33 Apply<Operation<FstPrinterArgs> >("PrintFst", fst.ArcType(), &args);
41 } // namespace fst
H A Dconvert.cc18 #include <fst/script/fst-class.h>
19 #include <fst/script/script-impl.h>
20 #include <fst/script/convert.h>
22 namespace fst { namespace
40 } // namespace fst
H A Ddeterminize.cc17 #include <fst/script/fst-class.h>
18 #include <fst/script/script-impl.h>
19 #include <fst/script/determinize.h>
21 namespace fst { namespace
38 } // namespace fst
H A Depsnormalize.cc17 #include <fst/script/fst-class.h>
18 #include <fst/script/script-impl.h>
19 #include <fst/script/epsnormalize.h>
21 namespace fst { namespace
37 } // namespace fst
H A Dequal.cc17 #include <fst/script/fst-class.h>
18 #include <fst/script/script-impl.h>
19 #include <fst/script/equal.h>
21 namespace fst { namespace
40 } // namespace fst
H A Dequivalent.cc17 #include <fst/script/fst-class.h>
18 #include <fst/script/script-impl.h>
19 #include <fst/script/equivalent.h>
21 namespace fst { namespace
42 } // namespace fst
H A Dinfo.cc19 #include <fst/script/fst-class.h>
20 #include <fst/script/script-impl.h>
21 #include <fst/script/info.h>
23 namespace fst { namespace
39 } // namespace fst
/external/openfst/src/include/fst/
H A Dinvert.h24 #include <fst/arc-map.h>
25 #include <fst/mutable-fst.h>
28 namespace fst { namespace
56 void Invert(MutableFst<Arc> *fst) { argument
57 SymbolTable *input = fst->InputSymbols() ? fst->InputSymbols()->Copy() : 0;
58 SymbolTable *output = fst->OutputSymbols() ? fst->OutputSymbols()->Copy() : 0;
59 ArcMap(fst, InvertMappe
84 InvertFst(const Fst<A> &fst) argument
90 InvertFst(const InvertFst<A> &fst, bool safe = false) argument
105 StateIterator(const InvertFst<A> &fst) argument
115 ArcIterator(const InvertFst<A> &fst, typename A::StateId s) argument
[all...]
H A Dreweight.h27 #include <fst/mutable-fst.h>
30 namespace fst { namespace
44 void Reweight(MutableFst<Arc> *fst, argument
49 if (fst->NumStates() == 0)
56 fst->SetProperties(kError, kError);
64 fst->SetProperties(kError, kError);
68 StateIterator< MutableFst<Arc> > sit(*fst);
75 for (MutableArcIterator< MutableFst<Arc> > ait(fst, state);
93 fst
[all...]
H A Dclosure.h28 #include <fst/mutable-fst.h>
29 #include <fst/rational.h>
32 namespace fst { namespace
46 void Closure(MutableFst<Arc> *fst, ClosureType closure_type) { argument
51 uint64 props = fst->Properties(kFstProperties, false);
52 StateId start = fst->Start();
53 for (StateIterator< MutableFst<Arc> > siter(*fst);
57 Weight final = fst->Final(s);
59 fst
76 Closure(RationalFst<Arc> *fst, ClosureType closure_type) argument
110 ClosureFst(const Fst<A> &fst, ClosureType closure_type) argument
114 ClosureFst(const Fst<A> &fst, const ClosureFstOptions &opts) argument
120 ClosureFst(const ClosureFst<A> &fst, bool safe = false) argument
134 StateIterator(const ClosureFst<A> &fst) argument
145 ArcIterator(const ClosureFst<A> &fst, StateId s) argument
[all...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dstatesort.h24 #include "fst/lib/mutable-fst.h"
26 namespace fst { namespace
31 // (1, 2, ..., fst->NumStates() - 1).
33 void StateSort(MutableFst<Arc> *fst, argument
38 CHECK_EQ(order.size(), fst->NumStates());
40 if (fst->Start() == kNoStateId)
43 uint64 props = fst->Properties(kStateSortProperties, false);
49 fst->SetStart(order[fst
[all...]

Completed in 302 milliseconds

1234567891011>>