summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGloria Mundi <gloria@gloria-mundi.eu>2024-04-28 03:26:45 +0200
committerGloria Mundi <gloria@gloria-mundi.eu>2024-04-28 03:26:45 +0200
commitd6d3b6183df2e1d40154f406916993f9b15b3cae (patch)
treefce26b106de624759a36e5add64aabad62f95a55 /Makefile
parent2e0ba29cd0de1e88bed78a96f587613bcf3cc97c (diff)
improve sparse tables
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index e3f59e6..160880f 100644
--- a/Makefile
+++ b/Makefile
@@ -3,6 +3,8 @@ TESTS = \
datastructures/test/fenwickTree2.test \
datastructures/test/monotonicConvexHull.test \
datastructures/test/persistent.test \
+ datastructures/test/sparseTable.test \
+ datastructures/test/sparseTableDisjoint.test \
graph/test/binary_lifting.test \
graph/test/LCA_sparse.test \
math/test/binomial0.test
@@ -47,6 +49,11 @@ datastructures/test/monotonicConvexHull.test: \
datastructures/monotonicConvexHull.cpp
datastructures/test/persistent.test: datastructures/test/persistent.cpp \
datastructures/persistent.cpp
+datastructures/test/sparseTable.test: datastructures/test/sparseTable.cpp \
+ datastructures/sparseTable.cpp
+datastructures/test/sparseTableDisjoint.test: \
+ datastructures/test/sparseTableDisjoint.cpp \
+ datastructures/sparseTableDisjoint.cpp
graph/test/binary_lifting.test: graph/test/binary_lifting.cpp \
graph/binary_lifting.cpp graph/test/util.cpp
graph/test/LCA_sparse.test: graph/test/LCA_sparse.cpp \