summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGloria Mundi <gloria@gloria-mundi.eu>2024-04-01 01:06:05 +0200
committerGloria Mundi <gloria@gloria-mundi.eu>2024-04-01 01:06:05 +0200
commit4fc39dcd54243609febc1ce4c8a1470b3d31fd47 (patch)
treed5ab175c47f15fce8db310afc4575f0237f7c49b /Makefile
parentf66e5c754556e25e339725754ff511c012c3c440 (diff)
fix binomial0 & add test
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7c0916a..e3f59e6 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,8 @@ TESTS = \
datastructures/test/monotonicConvexHull.test \
datastructures/test/persistent.test \
graph/test/binary_lifting.test \
- graph/test/LCA_sparse.test
+ graph/test/LCA_sparse.test \
+ math/test/binomial0.test
LATEXMK = latexmk -interaction=nonstopmode
@@ -50,6 +51,8 @@ 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 \
graph/LCA_sparse.cpp datastructures/sparseTable.cpp graph/test/util.cpp
+math/test/binomial0.test: math/test/binomial0.cpp math/binomial0.cpp \
+ math/shortModInv.cpp
FORCE:
.PHONY: all pdf test clean cleanpdf cleantest FORCE