Show
Ignore:
Timestamp:
07/28/09 23:23:14 (15 years ago)
Author:
trnewman
Message:

Added DSA CBR reference implementation.
Added simple python example application for DSA CBR.
Added GNUradio python application that uses CROSS and the DSA CBR.

Fixed several bugs in the socket interface.

Files:
1 modified

Legend:

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

    r375 r389  
    5757    char *zErrMsg = 0; 
    5858 
    59     //printf("command: %s\n", _cbr->command); 
     59    printf("command: %s\n", _cbr->command); 
    6060    rc = sqlite3_exec(_cbr->db, _cbr->command, callback, 0, &zErrMsg); 
    6161    if( rc!=SQLITE_OK){ 
     
    212212        strcat(_cbr->command, _names[i]); 
    213213        strcat(_cbr->command, ops_str[_ops[i]]); 
    214     printf("search command: %s\n", _cbr->command); 
    215214        sprintf(str_buffer, "%E", _vals[i]); 
    216215        strcat(_cbr->command, str_buffer); 
    217  
    218216 
    219217        if (i<_n-1) 
     
    225223    //printf("search command: %s\n", _cbr->command); 
    226224 
    227     //ExecuteCommand(_cbr); 
    228225    rc = ExecuteSearchCommand(_cbr, _retvals); 
    229226