summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGloria Mundi <gloria@gloria-mundi.eu>2024-03-15 01:48:00 +0100
committerGloria Mundi <gloria@gloria-mundi.eu>2024-03-15 01:48:00 +0100
commite9958381801bf44fd0635aaa1e68541b21e193e0 (patch)
treee463b44786fc02e332e4cc205654858f95820105 /Makefile
parent7e24d9d392aff890981f13c299b283189d94a75d (diff)
fix persistent and add test
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 39f92b0..7c0916a 100644
--- a/Makefile
+++ b/Makefile
@@ -2,6 +2,7 @@ TESTS = \
datastructures/test/fenwickTree.test \
datastructures/test/fenwickTree2.test \
datastructures/test/monotonicConvexHull.test \
+ datastructures/test/persistent.test \
graph/test/binary_lifting.test \
graph/test/LCA_sparse.test
@@ -43,6 +44,8 @@ datastructures/test/fenwickTree2.test: datastructures/test/fenwickTree2.cpp \
datastructures/test/monotonicConvexHull.test: \
datastructures/test/monotonicConvexHull.cpp \
datastructures/monotonicConvexHull.cpp
+datastructures/test/persistent.test: datastructures/test/persistent.cpp \
+ datastructures/persistent.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 \