Searched defs:weights_ (Results 1 - 3 of 3) sorted by relevance

/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dqueue.h251 : weights_(weights), less_(less) {}
254 return less_((*weights_)[x], (*weights_)[y]);
258 const vector<Weight>* weights_; member in class:fst::StateWeightCompare
/external/openfst/src/include/fst/
H A Dqueue.h283 : weights_(weights), less_(less) {}
286 return less_(weights_[x], weights_[y]);
290 const vector<Weight>& weights_; member in class:fst::StateWeightCompare
754 : weights_(weights), less_(less), estimate_(estimate) {}
757 Weight wx = Times(weights_[x], estimate_(x));
758 Weight wy = Times(weights_[y], estimate_(y));
763 const vector<Weight>& weights_; member in class:fst::AStarWeightCompare
H A Daccumulator.h135 vector<double> *Weights() { return &weights_; }
137 double *WeightEnd() { return &(weights_[weights_.size() - 1]); };
146 vector<double> weights_; member in class:fst::FastLogAccumulatorData
148 // weights_. Position -1 means no pre-computed weights for that
473 weights_ = 0;
480 weights_ = 0;
484 weights_ = data_->GetWeights(s);
485 if ((weights_ == 0) && (fst_->NumArcs(s) >= arc_limit_)) {
486 weights_
585 vector<double> *weights_; // Accumulated weights for cur. state member in class:fst::CacheLogAccumulator
[all...]

Completed in 254 milliseconds