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

  /external/openfst/src/include/fst/
fst-decl.h 38 typedef TropicalWeightTpl<float> TropicalWeight;
43 typedef ArcTpl<TropicalWeight> StdArc;
float-weight.h 236 typedef TropicalWeightTpl<float> TropicalWeight;
565 struct WeightConvert<LogWeight, TropicalWeight> {
566 TropicalWeight operator()(LogWeight w) const { return w.Value(); }
570 struct WeightConvert<Log64Weight, TropicalWeight> {
571 TropicalWeight operator()(Log64Weight w) const { return w.Value(); }
576 struct WeightConvert<TropicalWeight, LogWeight> {
577 LogWeight operator()(TropicalWeight w) const { return w.Value(); }
587 struct WeightConvert<TropicalWeight, Log64Weight> {
588 Log64Weight operator()(TropicalWeight w) const { return w.Value(); }
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
float-weight.h 116 class TropicalWeight : public FloatWeight {
118 typedef TropicalWeight ReverseWeight;
120 TropicalWeight() : FloatWeight() {}
122 TropicalWeight(float f) : FloatWeight(f) {}
124 TropicalWeight(const TropicalWeight &w) : FloatWeight(w) {}
126 static const TropicalWeight Zero() { return TropicalWeight(kPosInfinity); }
128 static const TropicalWeight One() { return TropicalWeight(0.0F);
    [all...]

Completed in 63 milliseconds