*** bibtex.ch Wed Aug 15 09:25:46 1990 --- bibtex-big.ch Wed Aug 15 09:28:21 1990 *************** *** 13,18 **** --- 13,19 ---- % 04/04/88 Version 0.99c; converted for use with web2c (ETM). % 11/30/89 Use FILENAMESIZE instead of 1024 (KB). % 03/09/90 `int' is a bad variable name for some cc's. + % 06/22/90 `big' version (NHFB). % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% *************** *** 103,110 **** @x @!pool_size=65000; {maximum number of characters in strings} @y ! @!pool_size=120000; {maximum number of characters in strings} @z %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % [15] Use `FILENAMESIZE', from site.h. --- 104,159 ---- @x @!pool_size=65000; {maximum number of characters in strings} @y ! @!pool_size=5120000; {maximum number of characters in strings} @z + @x + @!max_strings=4000; {maximum number of strings, including pre-defined; + must be |<=hash_size|} + @y + @!max_strings=20000; {maximum number of strings, including pre-defined; + must be |<=hash_size|} + @z + @x + @!max_cites=750; {maximum number of distinct cite keys; must be + |<=max_strings|} + @y + @!max_cites=3000; {maximum number of distinct cite keys; must be + |<=max_strings|} + @z + @x + @!max_ent_ints=3000; {maximum number of |int_entry_var|s + (entries $\times$ |int_entry_var|s)} + @y + @!max_ent_ints=25000; {maximum number of |int_entry_var|s + (entries $\times$ |int_entry_var|s)} + @z + @x + @!max_ent_strs=3000; {maximum number of |str_entry_var|s + (entries $\times$ |str_entry_var|s)} + @y + @!max_ent_strs=25000; {maximum number of |str_entry_var|s + (entries $\times$ |str_entry_var|s)} + @z + @x + @!max_fields=17250; {maximum number of fields (entries $\times$ fields, + about |23*max_cites| for consistency)} + @y + @!max_fields=69000; {maximum number of fields (entries $\times$ fields, + about |23*max_cites| for consistency)} + @z + @x + @d hash_size=5000 {must be |>= max_strings| and |>= hash_prime|} + @y + @d hash_size=21000 {must be |>= max_strings| and |>= hash_prime|} + @z + @x + @d hash_prime=4253 {a prime number about 85\% of |hash_size| and |>= 128| + and |< @t$2^{14}-2^6$@>|} + @y + @d hash_prime=16319 {a prime number about 85\% of |hash_size| and |>= 128| + and |< @t$2^{14}-2^6$@>|} + @z + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % [15] Use `FILENAMESIZE', from site.h.