Merge remote-tracking branch 'origin/master' into topic/matthias/bloom-filter

Conflicts:
	src/probabilistic/Hasher.h
This commit is contained in:
Matthias Vallentin 2013-07-30 12:12:27 +02:00
commit 9ad7121fed
250 changed files with 12762 additions and 5361 deletions

View file

@ -78,6 +78,14 @@ protected:
Hasher() { }
/**
* Constructor.
*
* @param k the number of hash functions.
*
* @param name A name for the hasher. Hashers with the same name
* should provide consistent results.
*/
Hasher(size_t k, const std::string& name);
private: