Changeset 6141 for trunk/STAT/st_ml.hxx
- Timestamp:
- 14/08/09 16:29:27 (3 years ago)
- Files:
-
- 1 modified
-
trunk/STAT/st_ml.hxx (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/STAT/st_ml.hxx
r5827 r6141 29 29 // otherwise extrem performance penalties 30 30 const int ST_BUCKET_SIZE = 16; 31 // at min umum ST_BUCKET_SIZE characters are calculated per call31 // at minimum ST_BUCKET_SIZE characters are calculated per call 32 32 const int LD_BUCKET_SIZE = 4; // log dualis of ST_BUCKET_SIZE 33 33 … … 108 108 void undo_tree(AP_tree *node); //opposite of do_tree 109 109 void insert_tree_into_hash_rek(AP_tree *node); 110 void create_matri zes(double max_disti, int nmatrizes);110 void create_matrices(double max_disti, int nmatrices); 111 111 void create_frequencies(); 112 112 static long delete_species(const char *key, long val, void *cd_st_ml); … … 124 124 ST_base_vector *inv_base_frequencies; // column independent 125 125 float *rates; // column independent 126 double max_dist; // max_dist for rate_matri zes127 double step_size; // max_dist/step_size matri zes126 double max_dist; // max_dist for rate_matrices 127 double step_size; // max_dist/step_size matrices 128 128 int max_matr; 129 ST_rate_matrix *rate_matri zes; // for each distance a new matrix129 ST_rate_matrix *rate_matrices; // for each distance a new matrix 130 130 long alignment_len; 131 131 AWT_csp *awt_csp; … … 141 141 const char *species_names, int marked_only, 142 142 const char *filter_string, AWT_csp *awt_csp); 143 // species_names is 0 -> all [marked] species (else species_names is a (char)1 sep erated list of species)143 // species_names is 0 -> all [marked] species (else species_names is a (char)1 separated list of species) 144 144 // filter_string==0 -> no filter 145 145
