[go: up one dir, main page]

Menu

[897c37]: / lpvm / prime.h  Maximize  Restore  History

Download this file

33 lines (26 with data), 757 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
** $Id: prime.h,v 1.2 2008/12/18 04:03:43 dredd Exp $
**
** $Source: /cvsroot/swlpc/swlpc/lpvm/prime.h,v $
** $Revision: 1.2 $
** $Date: 2008/12/18 04:03:43 $
** $State: Exp $
**
** Authors: Mike McGaughey & Geoff Wong, 1993-1998
** geoff.wong@gmail.com
** mmcgus@yahoo.com
**
** See the file "Copying" distributed with this file.
*/
#ifndef _PRIME_H
#define _PRIME_H
/*
* some generic large primes used by various hash functions in different
* files These are not critical.
*/
#define P1 701 /* 3 large, different primes */
#define P2 14009 /* There's a file of them here somewhere :-) */
#define P3 54001
#define HUGE_PRIME 29000039
/*****************************************************************************/
#endif