From d6d3b6183df2e1d40154f406916993f9b15b3cae Mon Sep 17 00:00:00 2001 From: Gloria Mundi Date: Sun, 28 Apr 2024 03:26:45 +0200 Subject: improve sparse tables --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'Makefile') 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 \ -- cgit v1.2.3