Home | History | Annotate | Download | only in Analysis

Lines Matching refs:Choose

2350 /// Compute the result of "n choose k", the binomial coefficient.  If an
2353 static uint64_t Choose(uint64_t n, uint64_t k, bool &Overflow) {
2553 // choose(x, 2x)*choose(2x-y, x-z)*A_{y-z}*B_z
2555 // Note that the arguments to choose() are always integers with values
2578 uint64_t Coeff1 = Choose(x, 2*x - y, Overflow);
2582 uint64_t Coeff2 = Choose(2*x - y, x-z, Overflow);
5349 // Choose the less conservative count.
5384 // Choose the less conservative count.