Show
Ignore:
Timestamp:
06/30/09 00:48:14 (15 years ago)
Author:
trnewman
Message:

Demo fixups

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • vtcross/trunk/src/cognitive_engines/cbr.c

    r230 r301  
    202202    unsigned int i; 
    203203    char str_buffer[64]; 
    204     //printf("number of ops %d:\n", _n); 
     204    printf("number of ops %d:\n", _n); 
    205205    for (i=0; i<_n; i++) { 
    206206        // ensure valid ops value 
     
    212212        strcat(_cbr->command, _names[i]); 
    213213        strcat(_cbr->command, ops_str[_ops[i]]); 
     214    printf("search command: %s\n", _cbr->command); 
    214215        sprintf(str_buffer, "%E", _vals[i]); 
    215216        strcat(_cbr->command, str_buffer);