summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGloria Mundi <gloria@gloria-mundi.eu>2024-02-27 23:14:30 +0100
committerGloria Mundi <gloria@gloria-mundi.eu>2024-02-27 23:14:30 +0100
commitffa3fde34b667dff3ffe011e1f80f43ee02d2f82 (patch)
tree7d453b81151e0680767a1577d7441f0d1ca1de8e /Makefile
parent4979378b4b22d1db9a972e7f576cdcb94d79e7e0 (diff)
add LCA test and remove unused parent in DFS
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b92afb9..718e966 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-TESTS = graph/test/binary_lifting.test
+TESTS = graph/test/binary_lifting.test graph/test/LCA_sparse.test
pdf:
latexmk -pdf tcr
@@ -21,5 +21,7 @@ clean:
graph/test/binary_lifting.test: graph/test/binary_lifting.cpp \
graph/binary_lifting.cpp
+graph/test/LCA_sparse.test: graph/test/LCA_sparse.cpp \
+ graph/LCA_sparse.cpp datastructures/sparseTable.cpp
.PHONY: all pdf test clean