home *** CD-ROM | disk | FTP | other *** search
/ Borland Programmer's Resource / Borland_Programmers_Resource_CD_1995.iso / winsock / wvnsc926 / rcs / primes.h < prev    next >
Encoding:
Text File  |  1995-05-19  |  518 b   |  36 lines

  1. head    1.1;
  2. access;
  3. symbols;
  4. locks; strict;
  5. comment    @ * @;
  6.  
  7.  
  8. 1.1
  9. date    94.08.23.22.56.19;    author DUMOULIN;    state Exp;
  10. branches;
  11. next    ;
  12.  
  13.  
  14. desc
  15. @list of primes for the hash table mechanism.
  16. @
  17.  
  18.  
  19. 1.1
  20. log
  21. @Initial revision
  22. @
  23. text
  24. @/* $Id: $ */
  25.  
  26. /*
  27.  * This is a small set of primes taken from a 'primes.h' written
  28.  * by Landon Curt Noll.
  29.  */
  30.  
  31. unsigned long prime[] = {
  32. 2203,4909,7757,10771,13879,17053,20333,23593,26903,30341,33679,
  33. 37139,40709,44119,47717,51287,54829,58313,61991,65537
  34. };
  35. @
  36.