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

/external/openfst/src/include/fst/
H A Dfst-decl.h38 typedef TropicalWeightTpl<float> TropicalWeight; typedef in namespace:fst
43 typedef ArcTpl<TropicalWeight> StdArc;
H A Dfloat-weight.h239 typedef TropicalWeightTpl<float> TropicalWeight; typedef in namespace:fst
568 struct WeightConvert<LogWeight, TropicalWeight> {
569 TropicalWeight operator()(LogWeight w) const { return w.Value(); }
573 struct WeightConvert<Log64Weight, TropicalWeight> {
574 TropicalWeight operator()(Log64Weight w) const { return w.Value(); }
579 struct WeightConvert<TropicalWeight, LogWeight> {
580 LogWeight operator()(TropicalWeight w) const { return w.Value(); }
590 struct WeightConvert<TropicalWeight, Log64Weight> {
591 Log64Weight operator()(TropicalWeight w) const { return w.Value(); }
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dfloat-weight.h116 class TropicalWeight : public FloatWeight { class in namespace:fst
118 typedef TropicalWeight ReverseWeight;
120 TropicalWeight() : FloatWeight() {} function in class:fst::TropicalWeight
122 TropicalWeight(float f) : FloatWeight(f) {} function in class:fst::TropicalWeight
124 TropicalWeight(const TropicalWeight &w) : FloatWeight(w) {} function in class:fst::TropicalWeight
126 static const TropicalWeight Zero() { return TropicalWeight(kPosInfinity); }
128 static const TropicalWeight One() { return TropicalWeight(0.
[all...]

Completed in 117 milliseconds