Design
pp1102.txt
Associated article: Community
Tags: Global Developer Open Source Design
Published source code accompanying the article by Michael Swaine in which he examines the new algorithm for determining prime numbers.
Paradigms Paadigms.
by Michael Swaine
Example 1:
Input: integer n > 1
if n is of the form a**b, b > 1
output COMPOSITE;
r = 2;
while r < n
if gcd(n,r) <> 1
output COMPOSITE;
if r is prime
let ...


