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/PARSIMONY/GA_main.cxx

    r5390 r6141  
    109109} 
    110110AP_ERR * make_start_population(GBDATA *gbmain,AP_tree *tree) { 
    111     // makes random startpopultation 
     111    // makes random start population 
    112112    // (at least two trees in each cluster) 
    113113    static int msp = 0; 
     
    158158        GAgenetic->init(gbmain); 
    159159    } 
    160     fprintf(GAgenetic->fout,"\n**** Genetic ALGORITHEM *****\n"); 
     160    fprintf(GAgenetic->fout,"\n**** Genetic ALGORITHM *****\n"); 
    161161    make_start_population(gbmain,ap_main->tree_root); 
    162162 
     
    192192        job = GAgenetic->get_job(cluster); 
    193193        if (job != 0) { 
    194             switch(job->modus) { 
     194            switch(job->mode) { 
    195195                case GA_CROSSOVER: { 
    196196                    GA_tree * gaTree = new GA_tree; 
     
    222222            } 
    223223            fprintf(GAgenetic->fout,"\njob %d in cluster %d : %d executed, mode %d" 
    224                     ,job,job->cluster0,job->cluster1,job->modus); 
     224                    ,job,job->cluster0,job->cluster1,job->mode); 
    225225            GAgenetic->put_optimized(job->tree0,cluster); 
    226226        } else {