Category talk:Wren-long: Difference between revisions

Content added Content deleted
(→‎Source code: Various changes and tweaks to give minor performance improvements.)
(→‎Source code: Removed some redundant lines.)
Line 461: Line 461:
isDivisibleBy(ULong.seven)) return false
isDivisibleBy(ULong.seven)) return false
var a
var a
if (this < 2047) {
if (this < 4759123141) {
a = [2]
} else if (this < 1373653) {
a = [2, 3]
} else if (this < 9080191) {
a = [31, 73]
} else if (this < 25326001) {
a = [2, 3, 5]
} else if (this < 3215031751) {
a = [2, 3, 5, 7]
} else if (this < 4759123141) {
a = [2, 7, 61]
a = [2, 7, 61]
} else if (this < 1122004669633) {
} else if (this < 1122004669633) {