| 80 | } |
| 81 | |
| 82 | TIntrusivePtr<TBpeDictionary> TBpeDictionaryBuilder::FinishBuilding() { |
| 83 | Y_ENSURE(!IsBuildingFinish, "FinishBuilding method should be called only once."); |
| 84 | IsBuildingFinish = true; |
| 85 | CalcMostFrequentUnits(); |
| 86 | return new TBpeDictionary(Alphabet, std::move(ResultingBpeUnits)); |
| 87 | } |
| 88 | |
| 89 | void TBpeDictionaryBuilder::CalcMostFrequentUnits() { |
| 90 | ResultingBpeUnits.clear(); |
no test coverage detected