HomeSort by relevance Sort by last modified time
    Searched full:binomial (Results 51 - 75 of 214) sorted by null

1 23 4 5 6 7 8 9

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/binomial_heap_base_/
debug_fn_imps.hpp 38 * Contains an implementation class for a base of binomial heaps.
erase_fn_imps.hpp 38 * Contains an implementation class for a base of binomial heaps.
insert_fn_imps.hpp 38 * Contains an implementation class for a base of binomial heaps.
split_join_fn_imps.hpp 38 * Contains an implementation class for a base of binomial heaps.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/binomial_heap_base_/
debug_fn_imps.hpp 38 * Contains an implementation class for a base of binomial heaps.
erase_fn_imps.hpp 38 * Contains an implementation class for a base of binomial heaps.
insert_fn_imps.hpp 38 * Contains an implementation class for a base of binomial heaps.
split_join_fn_imps.hpp 38 * Contains an implementation class for a base of binomial heaps.
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/binomial_heap_base_/
debug_fn_imps.hpp 38 * Contains an implementation class for a base of binomial heaps.
erase_fn_imps.hpp 38 * Contains an implementation class for a base of binomial heaps.
insert_fn_imps.hpp 38 * Contains an implementation class for a base of binomial heaps.
split_join_fn_imps.hpp 38 * Contains an implementation class for a base of binomial heaps.
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/binomial_heap_base_/
debug_fn_imps.hpp 38 * Contains an implementation class for a base of binomial heaps.
erase_fn_imps.hpp 38 * Contains an implementation class for a base of binomial heaps.
insert_fn_imps.hpp 38 * Contains an implementation class for a base of binomial heaps.
split_join_fn_imps.hpp 38 * Contains an implementation class for a base of binomial heaps.
  /external/guava/guava/src/com/google/common/math/
BigIntegerMath.java 393 * Returns {@code n} choose {@code k}, also known as the binomial coefficient of {@code n} and
400 public static BigInteger binomial(int n, int k) { method in class:BigIntegerMath
408 return BigInteger.valueOf(LongMath.binomial(n, k));
LongMath.java 643 * Returns {@code n} choose {@code k}, also known as the binomial coefficient of {@code n} and
648 public static long binomial(int n, int k) {
724 * binomial(biggestBinomials[k], k) fits in a long, but not
725 * binomial(biggestBinomials[k] + 1, k).
733 * binomial(biggestSimpleBinomials[k], k) doesn't need to use the slower GCD-based impl,
734 * but binomial(biggestSimpleBinomials[k] + 1, k) does.
IntMath.java 518 * Returns {@code n} choose {@code k}, also known as the binomial coefficient of {@code n} and
524 public static int binomial(int n, int k) {
549 // binomial(biggestBinomials[k], k) fits in an int, but not binomial(biggestBinomials[k]+1,k).
  /external/guava/guava-tests/test/com/google/common/math/
BigIntegerMathTest.java 442 assertEquals(expected, BigIntegerMath.binomial(n, k));
450 BigIntegerMath.binomial(n, -1);
454 BigIntegerMath.binomial(n, n + 1);
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
Collections2Test.java 147 // Almost force an overflow in the binomial coefficient calculation
150 // Do force an overflow in the binomial coefficient calculation
  /external/guava/guava-gwt/src-super/com/google/common/math/super/com/google/common/math/
IntMath.java 396 // binomial(biggestBinomials[k], k) fits in an int, but not binomial(biggestBinomials[k]+1,k).
  /external/guava/guava-tests/test/com/google/common/collect/
Collections2Test.java 305 // Almost force an overflow in the binomial coefficient calculation
308 // Do force an overflow in the binomial coefficient calculation
  /external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/
BinomialDistributionImpl.java 45 * Create a binomial distribution with the given number of trials and
  /external/apache-commons-math/src/main/java/org/apache/commons/math/random/
RandomDataImpl.java 543 * Generates a random value from the {@link BinomialDistributionImpl Binomial Distribution}.
547 * @param numberOfTrials number of trials of the Binomial distribution
548 * @param probabilityOfSuccess probability of success of the Binomial distribution
549 * @return random value sampled from the Binomial(numberOfTrials, probabilityOfSuccess) distribution
    [all...]

Completed in 1177 milliseconds

1 23 4 5 6 7 8 9