Square form factorization: Difference between revisions

m
→‎{{header|Phix}}: better value for MxN on 32-bit
(→‎{{header|Phix}}: replaced with translation of C)
m (→‎{{header|Phix}}: better value for MxN on 32-bit)
Line 1,054:
{{trans|C|<small>(fixes the two incorrectly failing cases of the previous version)</small>}}
<lang Phix>--requires(64) -- (decided to limit 32-bit explicitly instead)
constant MxN = power(2,iff(machine_bits()=32?53:63)),
m = {1, 3, 5, 7, 11}
7,806

edits