HomeSort by relevance Sort by last modified time
    Searched refs:Prune (Results 1 - 12 of 12) sorted by null

  /external/openfst/src/script/
prune.cc 19 #include <fst/script/prune.h>
26 void Prune(MutableFstClass *fst, const PruneOptions &opts) {
29 Apply<Operation<PruneArgs1> >("Prune", fst->ArcType(), &args);
33 void Prune(const FstClass &ifst, MutableFstClass *fst,
37 Apply<Operation<PruneArgs2> >("Prune", fst->ArcType(), &args);
41 void Prune(const FstClass &ifst,
47 Apply<Operation<PruneArgs3> >("Prune", ifst.ArcType(), &args);
51 void Prune(MutableFstClass *fst, const WeightClass& weight_threshold,
55 Apply<Operation<PruneArgs4> >("Prune", fst->ArcType(), &args);
59 REGISTER_FST_OPERATION(Prune, StdArc, PruneArgs1)
    [all...]
  /external/openfst/src/include/fst/script/
prune.h 26 #include <fst/prune.h>
79 void Prune(PruneArgs1 *args) {
87 Prune(ofst, opts);
96 void Prune(PruneArgs2 *args) {
102 Prune(ifst, ofst, opts);
112 void Prune(PruneArgs3 *args) {
117 Prune(ifst, ofst, w, args->arg4, args->arg5);
124 void Prune(PruneArgs4 *args) {
127 Prune(fst, w, args->arg3, args->arg4);
132 void Prune(MutableFstClass *fst, const PruneOptions &opts)
    [all...]
fstscript.h 53 #include <fst/script/prune.h>
118 REGISTER_FST_OPERATION(Prune, Arc, PruneArgs1);
119 REGISTER_FST_OPERATION(Prune, Arc, PruneArgs2);
120 REGISTER_FST_OPERATION(Prune, Arc, PruneArgs3);
121 REGISTER_FST_OPERATION(Prune, Arc, PruneArgs4);
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
prune.h 0 // prune.h
56 void Prune(MutableFst<Arc> *fst,
63 LOG(FATAL) << "Prune: Weight needs to have the path property and"
128 void Prune(MutableFst<Arc> *fst, typename Arc::Weight threshold) {
130 Prune(fst, opts);
141 void Prune(const Fst<Arc> &ifst,
149 LOG(FATAL) << "Prune: Weight needs to have the path property and"
238 void Prune(const Fst<Arc> &ifst,
242 Prune(ifst, ofst, opts);
  /external/openfst/src/bin/
fstprune.cc 23 #include <fst/script/prune.h>
59 s::Prune(fst, opts);
  /external/openfst/src/include/fst/
prune.h 0 // prune.h
100 void Prune(MutableFst<Arc> *fst,
107 FSTERROR() << "Prune: Weight needs to have the path property and"
197 void Prune(MutableFst<Arc> *fst,
203 Prune(fst, opts);
217 void Prune(const Fst<Arc> &ifst,
225 FSTERROR() << "Prune: Weight needs to have the path property and"
327 void Prune(const Fst<Arc> &ifst,
334 Prune(ifst, ofst, opts);
determinize.h 39 #include <fst/prune.h>
874 Prune(dfst, ofst, popts);
877 Prune(ofst, opts.weight_threshold, opts.state_threshold);
rmepsilon.h 40 #include <fst/prune.h>
324 Prune(fst, opts.weight_threshold, opts.state_threshold);
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
port.h 338 void Prune();
p2ptransportchannel.cc 563 // We can prune any connection for which there is a writable connection on
566 // we would prune out the current best connection). We leave connections on
579 connections_[i]->Prune();
    [all...]
port.cc 646 void Connection::Prune() {
783 // prune it again.
  /external/openfst/src/test/
algo_test.h 728 Prune(&P1, thresold);
730 Prune(T, &P2, thresold);
735 VLOG(1) << "Check prune(reverse) equiv reverse(prune)";
740 Prune(&P1, thresold);
742 Prune(&R, thresold.Reverse());
747 VLOG(1) << "Check: ShortestDistance(T- prune(T))"
751 Prune(A, &P, thresold);
    [all...]

Completed in 912 milliseconds