Adds cross-chi2 results

This commit is contained in:
LSaldyt
2017-11-19 11:25:37 -07:00
parent 402e66409a
commit 6757d5b842
4 changed files with 311 additions and 8 deletions

View File

@ -15,7 +15,7 @@ def main(args):
with open(filename, 'rb') as infile:
pSet = pickle.load(infile)
branchProblemSets[filename] = pSet
problemSets.append(pSet)
problemSets.append((filename, pSet))
cross_chi_squared(problemSets)
return 0