ARB
gb_tune.h
Go to the documentation of this file.
1 // =============================================================== //
2 // //
3 // File : gb_tune.h //
4 // Purpose : //
5 // //
6 // Institute of Microbiology (Technical University Munich) //
7 // http://www.arb-home.de/ //
8 // //
9 // =============================================================== //
10 
11 #ifndef GB_TUNE_H
12 #define GB_TUNE_H
13 
14 #define GB_RUNLENGTH_SIZE 6
15 
16 extern const int GBCM_BUFFER; // The communication buffer size
17 extern const int GB_REMOTE_HASH_SIZE; // The initial hash size in any client to find the database entry in the server
18 extern const int GBM_MAX_UNINDEXED_ENTRIES; // The maximum number fields with the same key which are not put together in one memory segment
19 
20 extern const int GB_TOTAL_CACHE_SIZE; // Initial cache size in bytes
21 extern const int GB_MAX_CACHED_ENTRIES; // maximum number of cached items (Maximum 32000)
22 
23 extern const int GB_MAX_QUICK_SAVE_INDEX; // Maximum extension-index of quick saves (Maximum 99)
24 extern const int GB_MAX_QUICK_SAVES; // maximum number of quick saves
25 
26 extern const int GB_MAX_LOCAL_SEARCH; // Maximum number of children before doing a search in the database server
27 
28 extern const int GBTUM_SHORT_STRING_SIZE; // the maximum strlen which is stored in short string format
29 extern const unsigned GB_HUFFMAN_MIN_SIZE; // min length, before huffmann code is used
30 extern const unsigned GB_RUNLENGTH_MIN_SIZE; // min length, before runlength code is used
31 
32 extern const int GB_MAX_REDO_CNT; // maximum number of redos
33 extern const int GB_MAX_UNDO_CNT; // maximum number of undos
34 extern const int GB_MAX_UNDO_SIZE; // total bytes used for undo
35 
36 
37 #else
38 #error gb_tune.h included twice
39 #endif // GB_TUNE_H
const int GB_MAX_UNDO_SIZE
Definition: adtune.cxx:34
const int GB_REMOTE_HASH_SIZE
Definition: adtune.cxx:17
const int GBCM_BUFFER
Definition: adtune.cxx:16
const int GB_TOTAL_CACHE_SIZE
Definition: adtune.cxx:20
const int GB_MAX_LOCAL_SEARCH
Definition: adtune.cxx:26
const int GBM_MAX_UNINDEXED_ENTRIES
Definition: adtune.cxx:18
const int GB_MAX_CACHED_ENTRIES
Definition: adtune.cxx:21
const unsigned GB_HUFFMAN_MIN_SIZE
Definition: adtune.cxx:29
const int GB_MAX_QUICK_SAVES
Definition: adtune.cxx:24
const int GBTUM_SHORT_STRING_SIZE
Definition: adtune.cxx:28
const int GB_MAX_UNDO_CNT
Definition: adtune.cxx:33
const int GB_MAX_REDO_CNT
Definition: adtune.cxx:32
const int GB_MAX_QUICK_SAVE_INDEX
Definition: adtune.cxx:23
const unsigned GB_RUNLENGTH_MIN_SIZE
Definition: adtune.cxx:30