diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2024-03-22 15:35:14 -0400 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2024-03-22 15:35:14 -0400 |
| commit | fb4312a883dd0e382ecbcfe1119479e6f44d32a6 (patch) | |
| tree | 0dfee95bbb83fbdd35a9502ce77cd4a6fa221b24 /tests/fst_tests.cpp | |
| parent | 7619c90e10adc441e525c98ad068a3639096d0c9 (diff) | |
| download | dynamic-extension-fb4312a883dd0e382ecbcfe1119479e6f44d32a6.tar.gz | |
PointLookup: added a point lookup query for unique indexes, and some tests
Diffstat (limited to 'tests/fst_tests.cpp')
| -rw-r--r-- | tests/fst_tests.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/fst_tests.cpp b/tests/fst_tests.cpp index 4c8da4a..778f64a 100644 --- a/tests/fst_tests.cpp +++ b/tests/fst_tests.cpp @@ -20,14 +20,14 @@ typedef StringRec R; typedef FSTrie<R> Shard; #include "include/shard_string.h" -//#include "include/rangequery.h" +#include "include/pointlookup.h" Suite *unit_testing() { Suite *unit = suite_create("Fast-succinct Trie Shard Unit Testing"); - // inject_rangequery_tests(unit); inject_shard_tests(unit); + inject_pointlookup_tests(unit); return unit; } |