From e9958381801bf44fd0635aaa1e68541b21e193e0 Mon Sep 17 00:00:00 2001 From: Gloria Mundi Date: Fri, 15 Mar 2024 01:48:00 +0100 Subject: fix persistent and add test --- Makefile | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Makefile') 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 \ -- cgit v1.2.3