source:
git/factory/cf_primes.h
@
3edea1
Last change on this file since 3edea1 was 3edea1, checked in by , 3 years ago | |
---|---|
|
|
File size: 510 bytes |
Rev | Line | |
---|---|---|
[493c477] | 1 | /* emacs edit mode for this file is -*- C++ -*- */ |
[2dd068] | 2 | |
[abddbe] | 3 | /** |
4 | * @file cf_primes.h | |
5 | * | |
6 | * access to prime tables | |
7 | **/ | |
8 | ||
[2dd068] | 9 | #ifndef INCL_CF_PRIMES_H |
10 | #define INCL_CF_PRIMES_H | |
11 | ||
[3edea1] | 12 | #include "globaldefs.h" |
[b973c0] | 13 | |
[2dd068] | 14 | /*BEGINPUBLIC*/ |
15 | ||
[3edea1] | 16 | int FACTORY_PUBLIC cf_getPrime( int i ); |
[2dd068] | 17 | |
[3edea1] | 18 | int FACTORY_PUBLIC cf_getNumPrimes(); |
[2dd068] | 19 | |
[3edea1] | 20 | int FACTORY_PUBLIC cf_getSmallPrime( int i ); |
[2dd068] | 21 | |
[3edea1] | 22 | int FACTORY_PUBLIC cf_getNumSmallPrimes(); |
[2dd068] | 23 | |
[3edea1] | 24 | int FACTORY_PUBLIC cf_getBigPrime( int i ); |
[2dd068] | 25 | |
[3edea1] | 26 | int FACTORY_PUBLIC cf_getNumBigPrimes(); |
[2dd068] | 27 | |
28 | /*ENDPUBLIC*/ | |
29 | ||
[493c477] | 30 | #endif /* ! INCL_CF_PRIMES_H */ |
Note: See TracBrowser
for help on using the repository browser.