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/AWT/AWT_tree_cmp.cxx

    r6024 r6141  
    7979 
    8080int AWT_species_set_root::search(AWT_species_set *set,FILE *log_file){ 
    81     long netto_cost; 
     81    long net_cost; 
    8282    double best_cost; 
    83     AWT_species_set *bs = this->search(set,&netto_cost); 
    84     best_cost = netto_cost + set->unfound_species_count * 0.0001; 
     83    AWT_species_set *bs = this->search(set,&net_cost); 
     84    best_cost = net_cost + set->unfound_species_count * 0.0001; 
    8585    if (best_cost < bs->best_cost){ 
    8686        bs->best_cost = best_cost; 
     
    8888    } 
    8989    if (log_file){ 
    90         if ( netto_cost){ 
     90        if ( net_cost){ 
    9191            fprintf(log_file, "Node '%s' placed not optimal, %li errors\n", 
    9292                    set->node->name, 
    93                     netto_cost); 
    94         } 
    95     } 
    96     return netto_cost; 
     93                    net_cost); 
     94        } 
     95    } 
     96    return net_cost; 
    9797} 
    9898 
     
    195195} 
    196196 
    197 GB_ERROR AWT_species_set_root::copy_node_infos(FILE *log, bool delete_old_nodes, bool nodes_with_marked_only) { 
     197GB_ERROR AWT_species_set_root::copy_node_information(FILE *log, bool delete_old_nodes, bool nodes_with_marked_only) { 
    198198    GB_ERROR error = 0; 
    199199    long j; 
     
    307307 
    308308                if (!compare_node_info) { 
    309                     aw_status("Copy Node Informations"); 
    310                     ssr->copy_node_infos(log, delete_old_nodes, nodes_with_marked_only); 
     309                    aw_status("Copy Node Information"); 
     310                    ssr->copy_node_information(log, delete_old_nodes, nodes_with_marked_only); 
    311311                } 
    312312