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

/external/openfst/src/include/fst/
H A Dfst-decl.h39 typedef LogWeightTpl<float> LogWeight; typedef in namespace:fst
44 typedef ArcTpl<LogWeight> LogArc;
H A Dfloat-weight.h363 typedef LogWeightTpl<float> LogWeight; typedef in namespace:fst
568 struct WeightConvert<LogWeight, TropicalWeight> {
569 TropicalWeight operator()(LogWeight w) const { return w.Value(); }
579 struct WeightConvert<TropicalWeight, LogWeight> {
580 LogWeight operator()(TropicalWeight w) const { return w.Value(); }
584 struct WeightConvert<Log64Weight, LogWeight> {
585 LogWeight operator()(Log64Weight w) const { return w.Value(); }
595 struct WeightConvert<LogWeight, Log64Weight> {
596 Log64Weight operator()(LogWeight w) const { return w.Value(); }
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dfloat-weight.h182 class LogWeight : public FloatWeight { class in namespace:fst
184 typedef LogWeight ReverseWeight;
186 LogWeight() : FloatWeight() {} function in class:fst::LogWeight
188 LogWeight(float f) : FloatWeight(f) {} function in class:fst::LogWeight
190 LogWeight(const LogWeight &w) : FloatWeight(w) {} function in class:fst::LogWeight
192 static const LogWeight Zero() { return LogWeight(kPosInfinity); }
194 static const LogWeight One() { return LogWeight(0.
[all...]

Completed in 689 milliseconds