rdtscp / bloom_filter

Bloom Filter implementation in c++.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bloom Filter

Codacy Badge Build Status License

Bloom Filter implementation in C++. Built using CMake and Google Test.

Download

git clone https://github.com/acwilson96/bloom_filter
cd bloom_filter

The following should be run from within the "bloom_filter" directory.

Release Install

mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make
make install
cd ..

Debug Install & Run Unit Tests

mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Debug ..
make
make install
ctest -V
cd ..

Uninstall

cd build
xargs rm < install_manifest.txt
cd ..
rm -rf ./build/

About

Bloom Filter implementation in c++.

License:MIT License


Languages

Language:C++ 77.3%Language:CMake 22.7%