HomeSort by relevance Sort by last modified time
    Searched defs:LogWeight (Results 1 - 3 of 3) sorted by null

  /external/openfst/src/include/fst/
fst-decl.h 39 typedef LogWeightTpl<float> LogWeight;
44 typedef ArcTpl<LogWeight> LogArc;
float-weight.h 360 typedef LogWeightTpl<float> LogWeight;
565 struct WeightConvert<LogWeight, TropicalWeight> {
566 TropicalWeight operator()(LogWeight w) const { return w.Value(); }
576 struct WeightConvert<TropicalWeight, LogWeight> {
577 LogWeight operator()(TropicalWeight w) const { return w.Value(); }
581 struct WeightConvert<Log64Weight, LogWeight> {
582 LogWeight operator()(Log64Weight w) const { return w.Value(); }
592 struct WeightConvert<LogWeight, Log64Weight> {
593 Log64Weight operator()(LogWeight w) const { return w.Value(); }
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
float-weight.h 182 class LogWeight : public FloatWeight {
184 typedef LogWeight ReverseWeight;
186 LogWeight() : FloatWeight() {}
188 LogWeight(float f) : FloatWeight(f) {}
190 LogWeight(const LogWeight &w) : FloatWeight(w) {}
192 static const LogWeight Zero() { return LogWeight(kPosInfinity); }
194 static const LogWeight One() { return LogWeight(0.0F);
    [all...]

Completed in 496 milliseconds