- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for isPrime (0.07 sec)
-
android/guava-tests/benchmark/com/google/common/math/LongMathBenchmark.java
tmp += LongMath.binomial(binomialArguments[j][0], binomialArguments[j][1]); } return tmp; } @Benchmark int isPrime(int reps) { int tmp = 0; for (int i = 0; i < reps; i++) { int j = i & ARRAY_MASK; if (LongMath.isPrime(positive[j])) { tmp++; } } return tmp; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 3.5K bytes - Viewed (0)