]> mj.ucw.cz Git - libucw.git/blobdiff - lib/sorter/sorter.h
Multi-way merges work fine in simple cases.
[libucw.git] / lib / sorter / sorter.h
index e329fa29447385c3e14269f470b9a26a43584f13..a0b6b39b76a1407fa7425f300bd0551b75cbac76 100644 (file)
@@ -201,6 +201,10 @@ static inline void P(copy_merged)(P(key) **keys, struct fastbuf **data UNUSED, u
 
 #include "lib/sorter/s-twoway.h"
 
 
 #include "lib/sorter/s-twoway.h"
 
+#ifndef SORT_UNIFY
+#include "lib/sorter/s-multiway.h"
+#endif
+
 #if defined(SORT_HASH_BITS) || defined(SORT_INT)
 #include "lib/sorter/s-radix.h"
 #endif
 #if defined(SORT_HASH_BITS) || defined(SORT_INT)
 #include "lib/sorter/s-radix.h"
 #endif
@@ -269,6 +273,10 @@ static struct fastbuf *P(sort)(
   ctx.internal_estimate = P(internal_estimate);
   ctx.twoway_merge = P(twoway_merge);
 
   ctx.internal_estimate = P(internal_estimate);
   ctx.twoway_merge = P(twoway_merge);
 
+#ifndef SORT_UNIFY
+  ctx.multiway_merge = P(multiway_merge);
+#endif
+
   sorter_run(&ctx);
 
 #ifdef SORT_OUTPUT_FILE
   sorter_run(&ctx);
 
 #ifdef SORT_OUTPUT_FILE