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

  /external/openfst/src/include/fst/
tuple-weight.h 36 template<class W, unsigned int n> class TupleWeight;
38 istream &operator>>(istream &strm, TupleWeight<W, n> &w);
42 class TupleWeight {
44 typedef TupleWeight<typename W::ReverseWeight, n> ReverseWeight;
46 TupleWeight() {}
48 TupleWeight(const TupleWeight &w) {
54 TupleWeight(Iterator begin, Iterator end) {
59 TupleWeight(const W &w) {
64 static const TupleWeight<W, n> &Zero()
    [all...]
power-weight.h 39 class PowerWeight : public TupleWeight<W, n> {
41 using TupleWeight<W, n>::Zero;
42 using TupleWeight<W, n>::One;
43 using TupleWeight<W, n>::NoWeight;
44 using TupleWeight<W, n>::Quantize;
45 using TupleWeight<W, n>::Reverse;
51 PowerWeight(const TupleWeight<W, n> &w) : TupleWeight<W, n>(w) {}
54 PowerWeight(Iterator begin, Iterator end) : TupleWeight<W, n>(begin, end) {}
57 static const PowerWeight<W, n> zero(TupleWeight<W, n>::Zero())
    [all...]

Completed in 689 milliseconds