summaryrefslogtreecommitdiffstats
path: root/experiments/process.py
diff options
context:
space:
mode:
authorBen Green <ben@SEASITs-MacBook-Pro.local>2015-06-08 22:28:56 -0400
committerBen Green <ben@SEASITs-MacBook-Pro.local>2015-06-08 22:28:56 -0400
commit8e1f8ca089ddfd3b2f4d78f797e4449682285bdb (patch)
tree2a77c2d44d25a093e7790a134153dbbf7a14f9ad /experiments/process.py
parent1739e9f5706bb8a73de5dbf0b467de49ea040898 (diff)
downloadcriminal_cascades-8e1f8ca089ddfd3b2f4d78f797e4449682285bdb.tar.gz
Ben’s first commit after getting code working!
Diffstat (limited to 'experiments/process.py')
-rw-r--r--experiments/process.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/experiments/process.py b/experiments/process.py
index 5fc55ba..ec25d8e 100644
--- a/experiments/process.py
+++ b/experiments/process.py
@@ -21,5 +21,6 @@ if __name__ == "__main__":
with open("out.log", "a") as fh:
for a, d in product(alpha, delta):
beta, roots, ll = ml(root_victims, victims, non_victims, age, a, d)
+ print beta
fh.write("\t".join(map(str, [a, d, beta, roots, ll])) + "\n")
fh.flush()