Home | History | Annotate | Download | only in lib

Lines Matching defs:threshold

33   // Pruning threshold.
34 Weight threshold;
46 : threshold(t), filter(f), idistance(id), fdistance(fd) {}
53 // 'opts.threshold' Times() the weight of the shortest path. Weights
90 Weight ceiling = Times((*fdistance)[fst->Start()], opts.threshold);
123 // the pruning threshold as an argument. Delete states and arcs in
125 // more than 'opts.threshold' Times() the weight of the shortest
128 void Prune(MutableFst<Arc> *fst, typename Arc::Weight threshold) {
129 PruneOptions<Arc, AnyArcFilter<Arc> > opts(threshold, AnyArcFilter<Arc>());
137 // 'ifst' whose weight is no more than 'opts.threshold' Times() the
175 Weight ceiling = Times((*fdistance)[ifst.Start()], opts.threshold);
232 // output MutableFst and simply takes the pruning threshold as an
235 // 'opts.threshold' Times() the weight of the shortest path. Weights
240 typename Arc::Weight threshold) {
241 PruneOptions<Arc, AnyArcFilter<Arc> > opts(threshold, AnyArcFilter<Arc>());