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

  /external/openfst/src/include/fst/
float-weight.h 313 class LogWeightTpl : public FloatWeightTpl<T> {
317 typedef LogWeightTpl ReverseWeight;
319 LogWeightTpl() : FloatWeightTpl<T>() {}
321 LogWeightTpl(T f) : FloatWeightTpl<T>(f) {}
323 LogWeightTpl(const LogWeightTpl<T> &w) : FloatWeightTpl<T>(w) {}
325 static const LogWeightTpl<T> Zero() {
326 return LogWeightTpl<T>(FloatLimits<T>::PosInfinity());
329 static const LogWeightTpl<T> One() {
330 return LogWeightTpl<T>(0.0F)
    [all...]
fst-decl.h 34 template <class W> class LogWeightTpl;
39 typedef LogWeightTpl<float> LogWeight;
signed-log-weight.h 33 : public PairWeight<TropicalWeight, LogWeightTpl<T> > {
36 typedef LogWeightTpl<T> X2;
197 return w1.Value2() == LogWeightTpl<T>::Zero()
198 && w2.Value2() == LogWeightTpl<T>::Zero();
210 return (w1.Value2() == LogWeightTpl<T>::Zero()) &&
211 (w2.Value2() == LogWeightTpl<T>::Zero());
random-weight.h 77 // This function object returns LogWeightTpl<T>'s that are random integers
82 typedef LogWeightTpl<T> Weight;
307 LogWeightTpl<T>::Zero() :
308 LogWeightTpl<T>(static_cast<T>(n)));
  /external/openfst/src/test/
weight_test.cc 39 using fst::LogWeightTpl;
83 WeightTester<LogWeightTpl<T>, LogWeightGenerator_<T> >
116 CHECK(LogWeightTpl<double>::Type() != LogWeightTpl<float>::Type());

Completed in 1900 milliseconds