Square form factorization: Difference between revisions

Content deleted Content added
Petelomax (talk | contribs)
→‎{{header|Phix}}: replaced with translation of C
Petelomax (talk | contribs)
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}