Skip to content
Snippets Groups Projects
Commit 441a40ce authored by Simon Désaulniers's avatar Simon Désaulniers Committed by GitHub
Browse files

Merge pull request #116 from kaldoran/filter_pht_values

pht : Filter of duplicate values
parents f7fa7d06 ef8b9d44
No related branches found
No related tags found
No related merge requests found
......@@ -28,13 +28,13 @@ static std::string blobToString(const Blob &bl) {
std::string Prefix::toString() const {
std::stringstream ss;
ss << "Prefix : " << std::endl << "\tContent_ : ";
ss << "Prefix : " << std::endl << "\tContent_ : \"";
ss << blobToString(content_);
ss << std::endl;
ss << "\"" << std::endl;
ss << "\tFlags_ : ";
ss << "\tFlags_ : \"";
ss << blobToString(flags_);
ss << std::endl;
ss << "\"" << std::endl;
return ss.str();
}
......@@ -193,6 +193,14 @@ void Pht::lookupStep(Prefix p, std::shared_ptr<int> lo, std::shared_ptr<int> hi,
IndexEntry entry;
entry.unpackValue(*value);
auto it = std::find_if(vals->cbegin(), vals->cend(), [&](const std::shared_ptr<IndexEntry>& ie) {
return ie->value == entry.value;
});
/* If we already got the value then get the next one */
if (it != vals->cend())
return true;
if (max_common_prefix_len) { /* inexact match case */
auto common_bits = Prefix::commonBits(p, entry.prefix);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment