Changeset 71

Show
Ignore:
Timestamp:
1999-09-20 13:46:45 (9 years ago)
Author:
olly
Message:

comment changes

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/xapian-core/matcher/match.cc

    r61 r71  
    2121} 
    2222 
    23 #define MSIZE 100 
     23#define MSIZE 1000 
    2424 
    2525typedef struct { 
     
    3737        
    3838        // build a tree balanced by the term frequencies 
    39         // (similar to a huffman encoding tree) 
     39        // (similar to building a huffman encoding tree) 
    4040        while (true) { 
    4141            tmp = pq.top(); 
     
    5454    msetitem mset[MSIZE]; 
    5555 
     56    // FIXME: this method of building the M-set isn't very efficient 
     57    // - want to avoid all those memmove-s 
    5658    while (!merger->at_end()) { 
    5759        weight w = merger->get_weight();