| 215 | } |
| 216 | |
| 217 | static void EncodeTree(const TDistrTree& t, TVector<ui16>* res) { |
| 218 | res->resize(0); |
| 219 | EncodeTreeImpl(t, res); |
| 220 | OptimizeTreeEncoding(res); |
| 221 | } |
| 222 | |
| 223 | void BuildDistributionTree(TDistributionTreesData* res, |
| 224 | const TArray2D<TVector<float>>& delayMatrixData) { |
no test coverage detected