minor fix

This commit is contained in:
Laurent Perron
2025-03-21 06:55:06 -07:00
parent 243a442a71
commit 8375a92d58

View File

@@ -32,7 +32,7 @@ double MathUtil::Stirling(double n) {
double MathUtil::LogCombinations(int n, int k) {
CHECK_GE(n, k);
CHECK_GT(n, 0);
CHECK_GE(n, 0);
CHECK_GE(k, 0);
// use symmetry to pick the shorter calculation