| 102 | |
| 103 | template <class Key, class Value> |
| 104 | void ProbabilityTable<Key, Value>::initialize(ProbName pname) |
| 105 | { |
| 106 | Probabilities *impl_ = Probabilities::GetInstance(); |
| 107 | impl_->set_prob_table(this, pname); |
| 108 | } |
| 109 | |
| 110 | template <class Key, class Value> |
| 111 | bool my_less(TableEntry<Key, Value> *t, Key k2) |
nothing calls this directly
no test coverage detected