Changeset 402 for trunk/thune/eval.c
- Timestamp:
- 05/29/07 02:12:22 (18 months ago)
- Files:
-
- 1 modified
-
trunk/thune/eval.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/thune/eval.c
r385 r402 635 635 } 636 636 break; 637 638 case UT_CONTEXT: 639 if( a->ctx.wordBlk == b->ctx.wordBlk ) 640 return 1; 641 break; 637 642 } 638 643 return 0; … … 689 694 if( (a->series.n == b->series.n) && 690 695 (a->series.it == b->series.it) ) 696 return 1; 697 break; 698 699 case UT_CONTEXT: 700 if( (a->ctx.wordBlk == b->ctx.wordBlk) && 701 (a->ctx.valBlk == b->ctx.valBlk) ) 691 702 return 1; 692 703 break;
