libbf
:dart: Bloom filters for C++11
File Explorer
Download Latest Version (.zip)- a2.hpp
- basic.hpp
- bitwise.hpp
- counting.hpp
- stable.hpp
- all.hpp
- bitvector.hpp
- bloom_filter.hpp
- counter_vector.hpp
- h3.hpp
- hash.hpp
- object.hpp
- wrap.hpp
- cmake_uninstall.cmake.in
- architecture.png
- bf-basic-part.png
- bf-basic.png
- bf-bitwise.png
- bf-counting.png
- bf-scalable.png
- shrinking.png
- sliding-window.png
- spectral-rm-bug.png
- documentation.dox
- Doxyfile
- Makefile
- a2.cpp
- basic.cpp
- bitwise.cpp
- counting.cpp
- stable.cpp
- bitvector.cpp
- counter_vector.cpp
- hash.cpp
- configuration.h
- error.h
- trial.h
- bf.cc
- CMakeLists.txt
- configuration.cc
- configuration.h
- CMakeLists.txt
- test.hpp
- tests.cpp
- unit_test.hpp
- unit_test_impl.hpp
- .clang-format
- .gitignore
- CMakeLists.txt
- configure
- COPYING
- README.md
# Installation Guide
git clone https://github.com/mavam/libbf
Downloads the entire project code from GitHub to your computer.
cd libbf
Moves into the project folder you just downloaded.
2. CMake
Medium Recommendedmkdir build && cd build
Creates a folder to hold the build output and moves into it.
cmake ..
Analyzes the source code and generates build configuration files (must be run inside the build folder).
make
Compiles the code based on the generated build configuration to produce an executable.
3. Make
Medium- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make
Compiles the code based on the generated build configuration to produce an executable.
make test
Compiles the code based on the generated build configuration to produce an executable.
make install
Compiles the code based on the generated build configuration to produce an executable.
Pulled directly from this repo's README.
