summaryrefslogtreecommitdiff
path: root/bubble.js
diff options
context:
space:
mode:
authorPeter Wu <peter@lekensteyn.nl>2014-05-21 15:11:13 +0200
committerPeter Wu <peter@lekensteyn.nl>2014-05-21 15:11:13 +0200
commit0d2a9c9fd6c16ced9c684354690cc62dfd3d58f0 (patch)
tree4d2100cf09f83050c281fb110ef79abf7e916058 /bubble.js
parent4dcd08342068f22fbdf76b606fdae759a0a50f4b (diff)
downloadd3viz-0d2a9c9fd6c16ced9c684354690cc62dfd3d58f0.tar.gz
Enable expensive check, but require at least 2 tweets per user
Diffstat (limited to 'bubble.js')
-rw-r--r--bubble.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/bubble.js b/bubble.js
index d6868a3..c37426e 100644
--- a/bubble.js
+++ b/bubble.js
@@ -4,11 +4,11 @@
/* settings */
// whether to enable expensive features
-var I_GOT_MONEY = 0;
+var I_GOT_MONEY = 1;
// whether to ignore lonely users
var KILL_LONERS = true;
// if positive, then users with fewer than this number of tweets will be ignored
-var USER_MIN_TWEET_COUNT = 0;
+var USER_MIN_TWEET_COUNT = 2;
// if true, enable sticky nodes unless Ctrl is held. If false, stick only if
// ctrl is held (the inverse).
var STICKY_DEFAULT = true;
@@ -399,6 +399,8 @@ X disabled edge positioning, 84 ticks, chromium
70 ticks in 31.3s, chromium (disabled title elements) [69,30.3]
73 ticks in 30.8s, chromium (title elements enabled) [68,30.4]
62 ticks in 30.2s, chromium (removed 2x 'g' elements) [60,31.8]
+
+55 ticks in 32.9s, chromium (with collision check) [54,30.4]
*/
} else {
run();