Changeset 6141 for trunk/STAT/st_ml.hxx

Show
Ignore:
Timestamp:
14/08/09 16:29:27 (3 years ago)
Author:
westram
Message:
  • spellchecked all (phew)
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/STAT/st_ml.hxx

    r5827 r6141  
    2929// otherwise extrem performance penalties 
    3030const int ST_BUCKET_SIZE = 16; 
    31 // at minumum ST_BUCKET_SIZE characters are calculated per call 
     31// at minimum ST_BUCKET_SIZE characters are calculated per call 
    3232const int LD_BUCKET_SIZE = 4; // log dualis of ST_BUCKET_SIZE 
    3333 
     
    108108    void undo_tree(AP_tree *node); //opposite of do_tree 
    109109    void insert_tree_into_hash_rek(AP_tree *node); 
    110     void create_matrizes(double max_disti, int nmatrizes); 
     110    void create_matrices(double max_disti, int nmatrices); 
    111111    void create_frequencies(); 
    112112    static long delete_species(const char *key, long val, void *cd_st_ml); 
     
    124124    ST_base_vector *inv_base_frequencies; // column independent 
    125125    float *rates; // column independent 
    126     double max_dist; // max_dist for rate_matrizes 
    127     double step_size; // max_dist/step_size matrizes 
     126    double max_dist; // max_dist for rate_matrices 
     127    double step_size; // max_dist/step_size matrices 
    128128    int max_matr; 
    129     ST_rate_matrix *rate_matrizes; // for each distance a new matrix 
     129    ST_rate_matrix *rate_matrices; // for each distance a new matrix 
    130130    long alignment_len; 
    131131    AWT_csp *awt_csp; 
     
    141141            const char *species_names, int marked_only, 
    142142            const char *filter_string, AWT_csp *awt_csp); 
    143     // species_names is 0 -> all [marked] species (else species_names is a (char)1 seperated list of species) 
     143    // species_names is 0 -> all [marked] species (else species_names is a (char)1 separated list of species) 
    144144    // filter_string==0 -> no filter 
    145145