/external/openfst/src/include/fst/script/ |
determinize.h | 30 WeightClass weight_threshold; member in struct:fst::script::DeterminizeOptions 38 : delta(d), weight_threshold(w), state_threshold(n), 53 detargs.weight_threshold = 54 *(opts.weight_threshold.GetWeight<typename Arc::Weight>());
|
disambiguate.h | 30 WeightClass weight_threshold; member in struct:fst::script::DisambiguateOptions 38 : delta(d), weight_threshold(w), state_threshold(n), 53 detargs.weight_threshold = 54 *(opts.weight_threshold.GetWeight<typename Arc::Weight>());
|
shortest-path.h | 38 const WeightClass weight_threshold; member in struct:fst::script::ShortestPathOptions 48 weight_threshold(w), state_threshold(s) { } 66 typename Arc::Weight weight_threshold = local 67 *(opts.weight_threshold.GetWeight<Weight>()); 77 weight_threshold, opts.state_threshold); 89 weight_threshold, opts.state_threshold); 101 weight_threshold, opts.state_threshold); 113 weight_threshold, opts.state_threshold); 125 weight_threshold, opts.state_threshold); 137 weight_threshold, opts.state_threshold) 163 typename Arc::Weight weight_threshold = local [all...] |
prune.h | 33 WeightClass weight_threshold; member in struct:fst::script::PruneOptions 40 : weight_threshold(w), 59 Weight weight_threshold = *(opts.weight_threshold.GetWeight<Weight>()); local 71 weight_threshold, state_threshold, AnyArcFilter<A>(), distance, 140 const WeightClass &weight_threshold, 145 void Prune(MutableFstClass *fst, const WeightClass& weight_threshold,
|
rmepsilon.h | 46 WeightClass weight_threshold; member in struct:fst::script::RmEpsilonOptions 54 connect(c), weight_threshold(w), state_threshold(n) { } 72 *(opts.weight_threshold.GetWeight<Weight>()); 197 const WeightClass &weight_threshold =
|
/external/openfst/src/script/ |
prune.cc | 43 const WeightClass& weight_threshold, 45 PruneArgs3 args(ifst, ofst, weight_threshold, state_threshold, delta); 51 void Prune(MutableFstClass *fst, const WeightClass& weight_threshold, 53 PruneArgs4 args(fst, weight_threshold, state_threshold, delta);
|
rmepsilon.cc | 34 const WeightClass &weight_threshold, 36 RmEpsilonArgs2 args(fst, connect, weight_threshold, state_threshold, delta);
|
shortest-path.cc | 35 WeightClass weight_threshold, int64 state_threshold) { 38 ShortestPathArgs2 args(ifst, ofst, n, unique, first_path, weight_threshold,
|
/external/openfst/src/bin/ |
fstprune.cc | 53 WeightClass weight_threshold = FLAGS_weight.empty() ? 57 s::PruneOptions opts(weight_threshold, FLAGS_nstate, 0, FLAGS_delta);
|
fstrmepsilon.cc | 57 WeightClass weight_threshold = FLAGS_weight.empty() ? 81 weight_threshold, FLAGS_nstate);
|
fstshortestpath.cc | 57 WeightClass weight_threshold = FLAGS_weight.empty() ? 85 false, weight_threshold, FLAGS_nstate);
|
/external/openfst/src/extensions/pdt/ |
pdtexpand.cc | 60 s::WeightClass weight_threshold = FLAGS_weight.empty() ? local 66 FLAGS_connect, FLAGS_keep_parentheses, weight_threshold));
|
/external/openfst/src/include/fst/ |
prune.h | 41 Weight weight_threshold; member in class:fst::PruneOptions 54 : weight_threshold(w), 93 // the weight of the shortest path Times() 'opts.weight_threshold'. 136 Weight limit = Times((*fdistance)[fst->Start()], opts.weight_threshold); 191 // 'weight_threshold'. When 'state_threshold != kNoStateId', the 198 typename Arc::Weight weight_threshold, 201 PruneOptions<Arc, AnyArcFilter<Arc> > opts(weight_threshold, state_threshold, 211 // Times() 'opts.weight_threshold'. When 'opts.state_threshold != 237 if (less(opts.weight_threshold, Weight::One()) || 258 opts.weight_threshold); [all...] |
shortest-path.h | 53 Weight weight_threshold; // pruning weight threshold. member in struct:fst::ShortestPathOptions 62 weight_threshold(w), state_threshold(s) {} 111 if (opts.weight_threshold != Weight::Zero() || 281 typename Arc::Weight weight_threshold = Arc::Weight::Zero(), 320 less(weight_threshold, Weight::One()) || 332 Weight limit = Times(distance[ifst.Start()], weight_threshold); 457 opts.weight_threshold, opts.state_threshold); 463 opts.weight_threshold, opts.state_threshold); 487 typename Arc::Weight weight_threshold = Arc::Weight::Zero(), 494 kDelta, first_path, weight_threshold, [all...] |
rmepsilon.h | 56 Weight weight_threshold; // Pruning weight threshold. member in class:fst::RmEpsilonOptions 64 connect(c), weight_threshold(w), state_threshold(n) {} 321 if (opts.weight_threshold != Weight::Zero() || 323 Prune(fst, opts.weight_threshold, opts.state_threshold); 324 if (opts.connect && (opts.weight_threshold == Weight::Zero() || 351 typename Arc::Weight weight_threshold = Arc::Weight::Zero(), 361 opts(&state_queue, delta, connect, weight_threshold, state_threshold);
|
determinize.h | 949 Weight weight_threshold; // Pruning weight threshold. member in struct:fst::DeterminizeOptions 956 : delta(d), weight_threshold(w), state_threshold(n), [all...] |
/external/openfst/src/include/fst/extensions/pdt/ |
pdtscript.h | 87 WeightClass weight_threshold; member in struct:fst::script::PdtExpandOptions 91 : connect(c), keep_parentheses(k), weight_threshold(w) {} 112 *(args->arg4.weight_threshold.GetWeight<typename Arc::Weight>())));
|
expand.h | 918 typename Arc::Weight weight_threshold; member in struct:fst::ExpandOptions [all...] |