Major optimization, rewrite to avoid deep recursion if possible.
[SXSI/xpathcomp.git] / main.ml
diff --git a/main.ml b/main.ml
index 1e145d1..76f8089 100644 (file)
--- a/main.ml
+++ b/main.ml
@@ -11,7 +11,7 @@ let () = init_timer();;
 
 let default_gc = Gc.get()
 let tuned_gc = { Gc.get() with
-                  Gc.minor_heap_size = 1024*1024; 
+                  Gc.minor_heap_size = 4*1024*1024;
                   Gc.major_heap_increment = 1024*1024;
                   Gc.max_overhead = 1000000;
                  }