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

  /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...]
fst-decl.h 27 class LogWeight;
random-weight.h 66 typedef LogWeight Weight;
arc.h 56 typedef LogWeight Weight;
vector-fst.h 411 // LogWeight version.
413 LogWeight WeightFromString<LogWeight>::operator()(const string &s) {
416 return LogWeight(f);
  /external/openfst/src/include/fst/
signed-log-weight.h 17 // LogWeight along with sign information that represents the value X in the
255 struct WeightConvert<SignedLogWeight, LogWeight> {
256 LogWeight operator()(SignedLogWeight w) const {
257 if (!SignedLogConvertCheck<SignedLogWeight, LogWeight>(w))
258 return LogWeight::NoWeight();
264 struct WeightConvert<SignedLog64Weight, LogWeight> {
265 LogWeight operator()(SignedLog64Weight w) const {
266 if (!SignedLogConvertCheck<SignedLog64Weight, LogWeight>(w))
267 return LogWeight::NoWeight();
296 LogWeight x2 = w.Value()
    [all...]
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(); }
arc.h 67 typedef ArcTpl<LogWeight> LogArc;
vector-fst.h 398 // LogWeight version.
400 LogWeight WeightFromString<LogWeight>::operator()(const string &s) {
403 return LogWeight(f);
  /external/openfst/src/test/
weight_test.cc 37 using fst::LogWeight;
115 CHECK(LogWeight::Type() == "log");
198 typedef SparsePowerWeight<LogWeight, size_t > LogSparsePowerWeight;
209 typedef ExpectationWeight<LogWeight, LogWeight>
218 typedef ExpectationWeight<LogWeight, LogSparsePowerWeight>
fst_test.cc 34 typedef ProductWeight<TropicalWeight, LogWeight> Weight;

Completed in 241 milliseconds