diff options
| author | Gloria Mundi <gloria@gloria-mundi.eu> | 2024-04-28 03:26:45 +0200 |
|---|---|---|
| committer | Gloria Mundi <gloria@gloria-mundi.eu> | 2024-04-28 03:26:45 +0200 |
| commit | d6d3b6183df2e1d40154f406916993f9b15b3cae (patch) | |
| tree | fce26b106de624759a36e5add64aabad62f95a55 /Makefile | |
| parent | 2e0ba29cd0de1e88bed78a96f587613bcf3cc97c (diff) | |
improve sparse tables
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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 \ |
