aboutsummaryrefslogtreecommitdiff
path: root/gc.h
diff options
context:
space:
mode:
authorTeddy <ted.sybil@gmail.com>2013-08-15 08:30:12 +0800
committerTeddy <ted.sybil@gmail.com>2013-08-15 08:30:12 +0800
commit3c6e957edadd896e15c32c5f7765913c8ad4d63c (patch)
tree3973035dcf7b3789bb98b10e6eb50d0b428ee5c7 /gc.h
parentaddbfae58d8afceb06d92f6ef1cdfed89c07518b (diff)
tail-recursion opt in user-def call
Diffstat (limited to 'gc.h')
-rw-r--r--gc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gc.h b/gc.h
index 78d26ae..2a0aac6 100644
--- a/gc.h
+++ b/gc.h
@@ -4,7 +4,7 @@
#include "model.h"
#include <map>
-const int GC_QUEUE_SIZE = 64 * 1024 * 1024;
+const int GC_QUEUE_SIZE = 262144;
const size_t GC_CYC_THRESHOLD = GC_QUEUE_SIZE >> 1;
typedef std::set<EvalObj*> EvalObjSet;