diff options
author | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2017-01-16 13:40:57 +0100 |
---|---|---|
committer | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2017-01-16 15:53:17 +0100 |
commit | fac7ffe8ea9f42ebcf67c011c944d165cbab3e3b (patch) | |
tree | f504b2fb750fa9228f2a96be3cd6477de09ed49a /src/lib/tests/CMakeLists.txt | |
parent | 4be42017e51ff506da3fbdf6d2682e91a66f02c1 (diff) | |
download | ouroboros-fac7ffe8ea9f42ebcf67c011c944d165cbab3e3b.tar.gz ouroboros-fac7ffe8ea9f42ebcf67c011c944d165cbab3e3b.zip |
lib: Add B-tree implementation
Adds an implementation of B-trees of order k (k children, min fill is
k/2, max fill k - 1). Useful to implement indexes for faster lookups.
Diffstat (limited to 'src/lib/tests/CMakeLists.txt')
-rw-r--r-- | src/lib/tests/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/tests/CMakeLists.txt b/src/lib/tests/CMakeLists.txt index 85535399..72455aa2 100644 --- a/src/lib/tests/CMakeLists.txt +++ b/src/lib/tests/CMakeLists.txt @@ -4,6 +4,7 @@ get_filename_component(PARENT_DIR ${PARENT_PATH} NAME) create_test_sourcelist(${PARENT_DIR}_tests test_suite.c # Add new tests here bitmap_test.c + btree_test.c crc32_test.c hashtable_test.c sha3_test.c |