diff options
Diffstat (limited to 'gen/generator.py')
-rw-r--r-- | gen/generator.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gen/generator.py b/gen/generator.py index 47b2a7c..7a994e9 100644 --- a/gen/generator.py +++ b/gen/generator.py | |||
@@ -389,8 +389,9 @@ class Generator(object): | |||
389 | p = storage() | 389 | p = storage() |
390 | p.partitioning = part | 390 | p.partitioning = part |
391 | p.clustering = clust | 391 | p.clustering = clust |
392 | p.polluting = pol | 392 | # convert from string to bool |
393 | p.splitting = splt | 393 | p.polluting = True if pol == 'True' else False |
394 | p.splitting = True if splt == 'True' else False | ||
394 | shared_params.append(p) | 395 | shared_params.append(p) |
395 | 396 | ||
396 | for _dp in PgmDesignPointGenerator(exp): | 397 | for _dp in PgmDesignPointGenerator(exp): |