Filter out "failed" runs of counting

This commit is contained in:
Kevin Wu
2022-09-13 17:37:32 -07:00
parent 18c7f05e21
commit dd101c8d3d

View File

@@ -73,6 +73,8 @@ def main():
pool.close()
pool.join()
alpha_beta_counts = [p for p in alpha_beta_counts if p != (-1, -1)]
alpha_counts, beta_counts = zip(*alpha_beta_counts)
fig, ax = plt.subplots(dpi=300)