aboutsummaryrefslogtreecommitdiffstats
path: root/plot.py
diff options
context:
space:
mode:
authorBjörn B. Brandenburg <bbb@cs.unc.edu>2010-03-20 13:26:56 -0400
committerBjörn B. Brandenburg <bbb@cs.unc.edu>2010-03-20 13:26:56 -0400
commitabd5fc5441da3a2b1ba8427a5aa1847d9bb7daa5 (patch)
treeccebdd04819a27faabf9a726558814f20039f8a2 /plot.py
parent47c9d5df446cd06ae566126135e26cb9279b35f2 (diff)
Add support for uni_mixed distribution.
Diffstat (limited to 'plot.py')
-rwxr-xr-xplot.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/plot.py b/plot.py
index befd7ee..6e6f006 100755
--- a/plot.py
+++ b/plot.py
@@ -67,6 +67,8 @@ def scenario_heading(conf, want_period=False):
67 dist = dist + 'in [0.1, 0.4]' 67 dist = dist + 'in [0.1, 0.4]'
68 elif 'heavy' in conf: 68 elif 'heavy' in conf:
69 dist = dist + 'in [0.5, 0.9]' 69 dist = dist + 'in [0.5, 0.9]'
70 elif 'mixed' in conf:
71 dist = dist + 'in [0.05, 0.95]'
70 elif conf['dist'] == 'bimo': 72 elif conf['dist'] == 'bimo':
71 dist = 'util. bimodially ' 73 dist = 'util. bimodially '
72 if 'light' in conf: 74 if 'light' in conf: