Lines Matching refs:Choose
1836 /// Compute the result of "n choose k", the binomial coefficient. If an
1839 static uint64_t Choose(uint64_t n, uint64_t k, bool &Overflow) {
2042 // choose(x, 2x)*choose(2x-y, x-z)*A_{y-z}*B_z
2044 // Note that the arguments to choose() are always integers with values
2066 uint64_t Coeff1 = Choose(x, 2*x - y, Overflow);
2070 uint64_t Coeff2 = Choose(2*x - y, x-z, Overflow);
4466 // Choose the less conservative count.
4501 // Choose the less conservative count.