aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Elliott <gelliott@cs.unc.edu>2014-02-03 14:00:31 -0500
committerGlenn Elliott <gelliott@cs.unc.edu>2014-02-03 14:00:31 -0500
commit8bb12361e366ebdd36f1d56b1eded293508bd544 (patch)
tree7c5d70363b4bb7cffaecadae3235c1a5916f395b
parentb6831538a7a453046086f21e2a96962681a67368 (diff)
fix missing dict lookups
-rwxr-xr-xecrts14/ecrts14.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/ecrts14/ecrts14.py b/ecrts14/ecrts14.py
index d22696b..0dfb501 100755
--- a/ecrts14/ecrts14.py
+++ b/ecrts14/ecrts14.py
@@ -68,7 +68,7 @@ NAMED_NUM_GRAPHS = {
68} 68}
69 69
70NAMED_SHAPES = { 70NAMED_SHAPES = {
71# 'uniform' : graph.uniform(), 71 'uniform' : graph.uniform(),
72 'binomial' : graph.binomial(), 72 'binomial' : graph.binomial(),
73# 'geometric': graph.geometric(), 73# 'geometric': graph.geometric(),
74} 74}
@@ -81,18 +81,18 @@ NAMED_HEIGHT_FACTORS = {
81} 81}
82 82
83NAMED_FAN = { 83NAMED_FAN = {
84# 'none' : graph.uniform(1,1), 84 'none' : graph.uniform(1,1),
85 'uniform_3' : graph.uniform(1,3), 85 'uniform_3' : graph.uniform(1,3),
86# 'uniform_6' : graph.uniform(1,6), 86 'uniform_6' : graph.uniform(1,6),
87# 'geometric_3' : graph.geometric(1,3), 87 'geometric_3' : graph.geometric(1,3),
88# 'geometric_6' : graph.geometric(1,3), 88 'geometric_6' : graph.geometric(1,3),
89} 89}
90 90
91NAMED_EDGE_HOP = { 91NAMED_EDGE_HOP = {
92# 'none' : graph.uniform(1,1), 92 'none' : graph.uniform(1,1),
93 'uniform_3' : graph.uniform(1,3), 93 'uniform_3' : graph.uniform(1,3),
94# 'uniform_deep' : graph.uniform(1,100), 94 'uniform_deep' : graph.uniform(1,100),
95# 'geometric_3': graph.geometric(1,3), 95 'geometric_3': graph.geometric(1,3),
96} 96}
97 97
98NAMED_EDGE_WSS = { 98NAMED_EDGE_WSS = {