Regina Calculation Engine
|
Provides small binomial coefficients. More...
#include "regina-core.h"
Namespaces | |
regina | |
Contains the entire Regina calculation engine. | |
regina::detail | |
Contains implementation details and common functionality for Regina's dimension-agnostic classes. | |
Functions | |
int | regina::binomSmall (int n, int k) |
Returns the binomial coefficient n choose k in constant time for small arguments (n ≤ 16). More... | |
long | regina::binomMedium (int n, int k) |
Returns the binomial coefficient n choose k in linear time for medium-sized arguments (n ≤ 29). More... | |
Variables | |
const int *const | regina::detail::binomSmall_ [17] |
A lookup table that stores (n choose k) for all n ≤ 16. More... | |
Provides small binomial coefficients.