diff options
author | sereglond <sereglond@yandex-team.ru> | 2022-02-10 16:47:46 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:47:46 +0300 |
commit | eb3d925534734c808602b31b38b953677f0a279f (patch) | |
tree | 4222ef8dc375ee9f30b68a004ee42a0845e005b6 /library/cpp/containers/comptrie/minimize.h | |
parent | 4c8065245df3ea26b7757bcb1f8218df287f9148 (diff) | |
download | ydb-eb3d925534734c808602b31b38b953677f0a279f.tar.gz |
Restoring authorship annotation for <sereglond@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/containers/comptrie/minimize.h')
-rw-r--r-- | library/cpp/containers/comptrie/minimize.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/library/cpp/containers/comptrie/minimize.h b/library/cpp/containers/comptrie/minimize.h index baaa431d044..b36fa5d01f3 100644 --- a/library/cpp/containers/comptrie/minimize.h +++ b/library/cpp/containers/comptrie/minimize.h @@ -5,7 +5,7 @@ class IOutputStream; -namespace NCompactTrie { +namespace NCompactTrie { size_t MeasureOffset(size_t offset); enum EMinimizeMode { @@ -13,7 +13,7 @@ namespace NCompactTrie { MM_NOALLOC, // minimize tree in the same buffer MM_INPLACE // do not write tree to the stream, but move to the buffer beginning }; - + // Return value: size of the minimized trie. size_t RawCompactTrieMinimizeImpl(IOutputStream& os, TOpaqueTrie& trie, bool verbose, size_t minMergeSize, EMinimizeMode mode); @@ -25,5 +25,5 @@ namespace NCompactTrie { TOpaqueTrie trie(data, datalength, skipper); return RawCompactTrieMinimizeImpl(os, trie, verbose, minmerge, mode); } - -} + +} |