primes
primes.ads
primes.adb
primes
primes
test_primes.ad
util
hash_tables/
heaps/
images/
lists/
maths/
messages/
pipes/
primes/
readers/
strings/
writers/
ada
bin/
engine/
fonts/
internal/
text/
util/
Home
Showcase
Snapshots
Ada Source
PHP Source
Fonts
Sourceforge
Summary
Downloads
Browse CVS
Donate
Activity
Hosted by
Primes
Helper functions for prime numbers.
Useful for hash table sizes.
function Prime
Tests if N is a prime number.
Param
Type
Description
in
N
Positive
The number to test.
return
Boolean
True if and only if N is prime.
function Next_Prime
Returns the smallest prime number that is greater or equal to N.
Param
Type
Description
in
N
Positive
Start searching at this number.
return
Positive
The smallest prime number >= N.
methods
Prime
Next_Prime