Searched refs:SparseTupleWeight (Results 1 – 2 of 2) sorted by relevance
/external/openfst/src/include/fst/ |
D | sparse-tuple-weight.h | 48 template <class W, class K> class SparseTupleWeight; variable 54 istream &operator>>(istream &strm, SparseTupleWeight<W, K> &w); 60 class SparseTupleWeight { 63 typedef SparseTupleWeight<typename W::ReverseWeight, K> ReverseWeight; 66 SparseTupleWeight() { in SparseTupleWeight() function 71 SparseTupleWeight(Iterator begin, Iterator end) { in SparseTupleWeight() function 79 SparseTupleWeight(const K& key, const W &w) { in SparseTupleWeight() function 84 SparseTupleWeight(const W &w) { in SparseTupleWeight() function 88 SparseTupleWeight(const SparseTupleWeight<W, K> &w) { in SparseTupleWeight() function 96 static const SparseTupleWeight<W, K> &Zero() { in Zero() [all …]
|
D | sparse-power-weight.h | 80 class SparsePowerWeight : public SparseTupleWeight<W, K> { 82 using SparseTupleWeight<W, K>::Zero; 83 using SparseTupleWeight<W, K>::One; 84 using SparseTupleWeight<W, K>::NoWeight; 85 using SparseTupleWeight<W, K>::Quantize; 86 using SparseTupleWeight<W, K>::Reverse; 92 SparsePowerWeight(const SparseTupleWeight<W, K> &w) : in SparsePowerWeight() 93 SparseTupleWeight<W, K>(w) { } in SparsePowerWeight() 97 SparseTupleWeight<W, K>(begin, end) { } in SparsePowerWeight() 100 SparseTupleWeight<W, K>(key, w) { } in SparsePowerWeight() [all …]
|