aboutsummaryrefslogtreecommitdiffstats
path: root/parse_exps.py
diff options
context:
space:
mode:
authorJonathan Herman <hermanjl@cs.unc.edu>2013-05-02 14:30:55 -0400
committerJonathan Herman <hermanjl@cs.unc.edu>2013-05-02 14:30:55 -0400
commit219e9595520c5069f4d7a41cd42db8ca50ac8005 (patch)
tree5d30be9ad5cd20a5f2e0e43e0227f678ad8d3c7d /parse_exps.py
parent3f706cd240d039365cbb8f9975ad97480d8b6145 (diff)
parent6f2558b8c4f4e33630b40dfbe20024f7a372a8f0 (diff)
Merge branch 'master' into wip-color-mc
Conflicts: common.py gen/generator.py run/experiment.py run_exps.py
Diffstat (limited to 'parse_exps.py')
-rwxr-xr-xparse_exps.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/parse_exps.py b/parse_exps.py
index 98f95df..37667aa 100755
--- a/parse_exps.py
+++ b/parse_exps.py
@@ -14,7 +14,7 @@ import sys
14import traceback 14import traceback
15 15
16from collections import namedtuple 16from collections import namedtuple
17from config.config import DEFAULTS,PARAMS 17from config.config import FILES,DEFAULTS,PARAMS
18from optparse import OptionParser 18from optparse import OptionParser
19from parse.point import ExpPoint 19from parse.point import ExpPoint
20from parse.tuple_table import TupleTable 20from parse.tuple_table import TupleTable
@@ -94,7 +94,7 @@ def parse_exp(exp_force_base):
94 94
95 95
96def get_exp_params(data_dir, cm_builder): 96def get_exp_params(data_dir, cm_builder):
97 param_file = "%s/%s" % (data_dir, DEFAULTS['params_file']) 97 param_file = "%s/%s" % (data_dir, FILES['params_file'])
98 if os.path.isfile(param_file): 98 if os.path.isfile(param_file):
99 params = com.load_params(param_file) 99 params = com.load_params(param_file)
100 100