| 163 | } |
| 164 | |
| 165 | void TQuantizedFeaturesInfo::Init(TFeaturesLayout* featuresLayout) { |
| 166 | FeaturesLayout = MakeIntrusive<TFeaturesLayout>(std::move(*featuresLayout)); |
| 167 | TCatFeaturesPerfectHash catFeaturesPerfectHash(FeaturesLayout->GetCatFeatureCount()); |
| 168 | DoSwap(CatFeaturesPerfectHash, catFeaturesPerfectHash); |
| 169 | } |
| 170 | |
| 171 | |
| 172 | bool TQuantizedFeaturesInfo::EqualTo(const TQuantizedFeaturesInfo& rhs, bool ignoreSparsity) const { |
nothing calls this directly
no test coverage detected