I want to use a cache, implemented by boost's unordered_map, from a dynamic_bitset to a dynamic_bitset. The problem, of course, is that there is no default hash function from the bitset. It doesn't seem to be like a conceptual problem, but I don't know how to work out the technicalities. How should I do that?

Thanks.

link|improve this question

See svn.boost.org/trac/boost/ticket/2841. – KennyTM Oct 9 '10 at 16:19
I can't use this since m.bits is a private member (the suggestion is for a change in dynamic_bitset). – R S Oct 9 '10 at 16:31
m.bits should be public const, that's pretty stupid! Can you get away with using vector<bool> (which is a bitset, but one that works MUCH nicer) as the key? – Mahmoud Al-Qudsi Oct 9 '10 at 16:46
I'm using a bitset since I am doing a lot of set calculations (intersections etc.), which are much much faster when done bitwise. So I guess not. – R S Oct 9 '10 at 16:47
feedback

4 Answers

There's to_block_range function that copies out the words that the bitset consists of into some buffer. To avoid actual copying, you could define your own "output iterator" that just processes individual words and computes hash from them. Re. how to compute hash: see e.g. the FNV hash function.

Unfortunately, the design of dynamic_bitset is IMHO, braindead because it does not give you direct access to the underlying buffer (not even as const).

link|improve this answer
Should it be really hard to just to copy-paste the dynamic_bitset header file and replace it with "my_dynamic_bitset", where all the difference is that it's not private anymore? – R S Oct 9 '10 at 16:51
It's a maintenance problem. You have to repeat the same procedure each time the mainstream file gets updated for any reason. – zvrba Oct 9 '10 at 18:27
feedback

It is a feature request.

One could implement a not-so-efficient unique hash by converting the bitset to a vector temporary:

namespace boost {
    template <typename B, typename A>
    std::size_t hash_value(const boost::dynamic_bitset<B, A>& bs) {
        std::vector<B, A> v;
        boost::to_block_range(bs, std::back_inserter(v));
        return boost::hash_value(v);
    }
}
link|improve this answer
How do I use that? I tried "unordered_map<node_set, node_set, boost::hash<node_set> > cache;" but it still doesn't compile. – R S Oct 9 '10 at 17:22
@RS: ideone.com/c2CsK – KennyTM Oct 9 '10 at 17:24
feedback
up vote 1 down vote accepted

I found an unexpected solution. It turns out boost has an option to #define BOOST_DYNAMIC_BITSET_DONT_USE_FRIENDS. When this is defined, private members including m_bits become public (I think it's there to deal with old compilers or something).

So now I can use @KennyTM's answer, changed a bit:

namespace boost {
    template <typename B, typename A>
    std::size_t hash_value(const boost::dynamic_bitset<B, A>& bs) {            
        return boost::hash_value(bs.m_bits);
    }
}
link|improve this answer
feedback

We can't directly calculate the hash because the underlying data in dynamic_bitset is private (m_bits)

But we can easily finesse past (subvert!) the c++ access specification system without either

  • hacking at the code or
  • pretending your compiler is non-conforming (BOOST_DYNAMIC_BITSET_DONT_USE_FRIENDS)

The key is the template function to_block_range which is a friend to dynamic_bitset. Specialisations of this function, therefore, also have access to its private data (i.e. m_bits).

The resulting code couldn't be simpler

namespace boost {


// specialise dynamic bitset for size_t& to return the hash of the underlying data
template <>
inline void
to_block_range(const dynamic_bitset<>& b, size_t& hash_result)
{
    hash_result = boost::hash_value(bs.m_bits);
}

std::size_t hash_value(const boost::dynamic_bitset<B, A>& bs) 
{            
    size_t hash_result;
    to_block_range(bs, hash_result);
    return hash_result;
}
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.