Changeset 507

Show
Ignore:
Timestamp:
11/11/09 14:57:00 (14 years ago)
Author:
trnewman
Message:

debug stuff

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • vtcross/trunk/src/include/vtcross/cbr.h

    r497 r507  
    265265        float *_retvals) 
    266266{    
    267     LOG("CBR::Search - number of ops %d:\n", _n); 
    268  
    269267    char str_buffer[64]; 
    270268    const string ops_str[] = {"==", "!=", ">", ">=", "<", "<="}; 
     
    280278        command += _names[i] + ops_str[_ops[i]]; 
    281279 
    282         LOG("CBR::Search - command: %s\n", command.c_str()); 
    283280 
    284281        sprintf(str_buffer, "%E", _vals[i]); 
     
    289286        else 
    290287            command += " order by utility desc;"; 
    291     } 
     288         
     289    } 
     290    LOG("CBR::Search - command: %s\n", command.c_str()); 
    292291 
    293292    return ExecuteSearchCommand(_retvals);