Home
last modified time | relevance | path

Searched refs:MinMaxWeightTpl (Results 1 – 4 of 4) sorted by relevance

/external/openfst/src/include/fst/
Dfloat-weight.h447 class MinMaxWeightTpl : public FloatWeightTpl<T> {
451 typedef MinMaxWeightTpl<T> ReverseWeight;
453 MinMaxWeightTpl() : FloatWeightTpl<T>() {} in MinMaxWeightTpl() function
455 MinMaxWeightTpl(T f) : FloatWeightTpl<T>(f) {} in MinMaxWeightTpl() function
457 MinMaxWeightTpl(const MinMaxWeightTpl<T> &w) : FloatWeightTpl<T>(w) {} in MinMaxWeightTpl() function
459 static const MinMaxWeightTpl<T> Zero() { in Zero()
460 return MinMaxWeightTpl<T>(FloatLimits<T>::PosInfinity()); in Zero()
463 static const MinMaxWeightTpl<T> One() { in One()
464 return MinMaxWeightTpl<T>(FloatLimits<T>::NegInfinity()); in One()
467 static const MinMaxWeightTpl<T> NoWeight() { in NoWeight()
[all …]
Dfst-decl.h35 template <class W> class MinMaxWeightTpl; variable
40 typedef MinMaxWeightTpl<float> MinMaxWeight;
Drandom-weight.h115 typedef MinMaxWeightTpl<T> Weight;
/external/openfst/src/test/
Dweight_test.cc44 using fst::MinMaxWeightTpl;
88 WeightTester<MinMaxWeightTpl<T>, MinMaxWeightGenerator_<T> > in TestTemplatedWeights()