Changeset 56
- Timestamp:
- 1999-09-17 14:17:38 (9 years ago)
- Files:
-
- 1 modified
-
trunk/xapian-core/matcher/match.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/xapian-core/matcher/match.cc
r44 r56 17 17 PostList *postlist = DB->open_post_list(id); 18 18 if (merger) { 19 // FIXME: this builds a totally unbalanced tree20 // or does that not matter?19 // FIXME: want to build a tree balanced by the term frequencies 20 // (similar to a huffman encoding tree) 21 21 merger = new MergedPostList(merger, postlist); 22 22 } else { … … 26 26 } 27 27 28 #define MSIZE 100 028 #define MSIZE 100 29 29 30 30 typedef struct {
