NaturalLess< CompactLatticeWeightTpl< LatticeWeightTpl< FloatType >, IntType > > Class Template Reference

#include <lattice-weight.h>

Public Types

typedef CompactLatticeWeightTpl< LatticeWeightTpl< FloatType >, IntType > Weight
 

Public Member Functions

 NaturalLess ()
 
bool operator() (const Weight &w1, const Weight &w2) const
 

Detailed Description

template<class FloatType, class IntType>
class fst::NaturalLess< CompactLatticeWeightTpl< LatticeWeightTpl< FloatType >, IntType > >

Definition at line 609 of file lattice-weight.h.

Member Typedef Documentation

◆ Weight

typedef CompactLatticeWeightTpl<LatticeWeightTpl<FloatType>, IntType> Weight

Definition at line 611 of file lattice-weight.h.

Constructor & Destructor Documentation

◆ NaturalLess()

NaturalLess ( )
inline

Definition at line 613 of file lattice-weight.h.

613 {}

Member Function Documentation

◆ operator()()

bool operator() ( const Weight w1,
const Weight w2 
) const
inline

Definition at line 615 of file lattice-weight.h.

References fst::Compare().

615  {
616  // NaturalLess is a negative order (opposite to normal ordering).
617  // This operator () corresponds to "<" in the negative order, which
618  // corresponds to the ">" in the normal order.
619  return (Compare(w1, w2) == 1);
620  }
int Compare(const LatticeWeightTpl< FloatType > &w1, const LatticeWeightTpl< FloatType > &w2)
Compare returns -1 if w1 < w2, +1 if w1 > w2, and 0 if w1 == w2.

The documentation for this class was generated from the following file: