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

  /external/openfst/src/include/fst/script/
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;
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;
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);
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,
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);
  /external/openfst/src/script/
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);
rmepsilon.cc 35 int64 state_threshold, float delta) {
36 RmEpsilonArgs2 args(fst, connect, weight_threshold, state_threshold, delta);
shortest-path.cc 35 WeightClass weight_threshold, int64 state_threshold) {
39 state_threshold);
  /external/openfst/src/include/fst/
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 = kNoStateId
    [all...]
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 = kNoStateId)
    [all...]
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);
determinize.h 950 StateId state_threshold; // Pruning state threshold. member in struct:fst::DeterminizeOptions
956 : delta(d), weight_threshold(w), state_threshold(n),
    [all...]

Completed in 6544 milliseconds