/external/openfst/src/script/ |
H A D | prune.cc | 44 int64 state_threshold, float delta) { 45 PruneArgs3 args(ifst, ofst, weight_threshold, state_threshold, delta); 52 int64 state_threshold, float delta) { 53 PruneArgs4 args(fst, weight_threshold, state_threshold, delta); 41 Prune(const FstClass &ifst, MutableFstClass *ofst, const WeightClass& weight_threshold, int64 state_threshold, float delta) argument 51 Prune(MutableFstClass *fst, const WeightClass& weight_threshold, int64 state_threshold, float delta) argument
|
H A D | rmepsilon.cc | 35 int64 state_threshold, float delta) { 36 RmEpsilonArgs2 args(fst, connect, weight_threshold, state_threshold, delta); 33 RmEpsilon(MutableFstClass *fst, bool connect, const WeightClass &weight_threshold, int64 state_threshold, float delta) argument
|
H A D | shortest-path.cc | 35 WeightClass weight_threshold, int64 state_threshold) { 39 state_threshold); 33 ShortestPath(const FstClass &ifst, MutableFstClass *ofst, size_t n, bool unique, bool first_path, WeightClass weight_threshold, int64 state_threshold) argument
|
/external/openfst/src/include/fst/script/ |
H A D | determinize.h | 31 int64 state_threshold; member in struct:fst::script::DeterminizeOptions 38 : delta(d), weight_threshold(w), state_threshold(n), 55 detargs.state_threshold = opts.state_threshold;
|
H A D | disambiguate.h | 31 int64 state_threshold; member in struct:fst::script::DisambiguateOptions 38 : delta(d), weight_threshold(w), state_threshold(n), 55 detargs.state_threshold = opts.state_threshold;
|
H A D | prune.h | 34 int64 state_threshold; member in struct:fst::script::PruneOptions 41 state_threshold(s), 60 StateId state_threshold = opts.state_threshold; local 71 weight_threshold, state_threshold, AnyArcFilter<A>(), distance, 141 int64 state_threshold = kNoStateId, 146 int64 state_threshold, float delta);
|
H A D | shortest-path.h | 39 const int64 state_threshold; member in struct:fst::script::ShortestPathOptions 48 weight_threshold(w), state_threshold(s) { } 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); 183 int64 state_threshold = fst::kNoStateId);
|
H A D | rmepsilon.h | 47 int64 state_threshold; member in struct:fst::script::RmEpsilonOptions 54 connect(c), weight_threshold(w), state_threshold(n) { } 79 opts.state_threshold); 87 opts.state_threshold); 95 opts.state_threshold); 104 opts.state_threshold); 112 opts.state_threshold); 120 opts.state_threshold); 199 int64 state_threshold = fst::kNoStateId,
|
/external/openfst/src/include/fst/ |
H A D | prune.h | 43 StateId state_threshold; member in class:fst::PruneOptions 55 state_threshold(s), 94 // When 'opts.state_threshold != kNoStateId', the resulting transducer 95 // will restricted further to have at most 'opts.state_threshold' 123 if ((opts.state_threshold == 0) || 170 if ((opts.state_threshold != kNoStateId) && 171 (num_visited >= opts.state_threshold)) 191 // 'weight_threshold'. When 'state_threshold != kNoStateId', the 193 // 'opts.state_threshold' states. Weights need to be commutative and 199 typename Arc::StateId state_threshold [all...] |
H A D | shortest-path.h | 54 StateId state_threshold; // pruning state threshold. member in struct:fst::ShortestPathOptions 62 weight_threshold(w), state_threshold(s) {} 112 opts.state_threshold != kNoStateId) { 282 typename Arc::StateId state_threshold = kNoStateId) { 321 state_threshold == 0) { 343 (state_threshold != kNoStateId && 344 ofst->NumStates() >= state_threshold)) 457 opts.weight_threshold, opts.state_threshold); 463 opts.weight_threshold, opts.state_threshold); 488 typename Arc::StateId state_threshold [all...] |
H A D | rmepsilon.h | 57 StateId state_threshold; // Pruning state threshold. member in class:fst::RmEpsilonOptions 64 connect(c), weight_threshold(w), state_threshold(n) {} 322 opts.state_threshold != kNoStateId) 323 Prune(fst, opts.weight_threshold, opts.state_threshold); 325 opts.state_threshold != kNoStateId)) 352 typename Arc::StateId state_threshold = kNoStateId, 361 opts(&state_queue, delta, connect, weight_threshold, state_threshold);
|
H A D | determinize.h | 950 StateId state_threshold; // Pruning state threshold. member in struct:fst::DeterminizeOptions 956 : delta(d), weight_threshold(w), state_threshold(n), 993 opts.state_threshold != kNoStateId) { 999 opts.state_threshold, 1005 Prune(ofst, opts.weight_threshold, opts.state_threshold);
|