diff options
author | Björn B. Brandenburg <bbb@cs.unc.edu> | 2010-03-20 13:26:56 -0400 |
---|---|---|
committer | Björn B. Brandenburg <bbb@cs.unc.edu> | 2010-03-20 13:26:56 -0400 |
commit | abd5fc5441da3a2b1ba8427a5aa1847d9bb7daa5 (patch) | |
tree | ccebdd04819a27faabf9a726558814f20039f8a2 /plot.py | |
parent | 47c9d5df446cd06ae566126135e26cb9279b35f2 (diff) |
Add support for uni_mixed distribution.
Diffstat (limited to 'plot.py')
-rwxr-xr-x | plot.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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: |