Show
Ignore:
Timestamp:
05/29/07 02:12:22 (18 months ago)
Author:
krobillard
Message:

Thune - same? & eq? handle context.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/thune/thread_safe/eval.c

    r387 r402  
    646646        } 
    647647            break; 
     648 
     649        case UT_CONTEXT: 
     650            if( a->ctx.wordBlk == b->ctx.wordBlk ) 
     651                return 1; 
     652            break; 
    648653    } 
    649654    return 0; 
     
    702707            if( (a->series.n == b->series.n) && 
    703708                (a->series.it == b->series.it) ) 
     709                return 1; 
     710            break; 
     711 
     712        case UT_CONTEXT: 
     713            if( (a->ctx.wordBlk == b->ctx.wordBlk) && 
     714                (a->ctx.valBlk == b->ctx.valBlk) ) 
    704715                return 1; 
    705716            break;