aboutsummaryrefslogtreecommitdiff
path: root/epare/simulate.py
diff options
context:
space:
mode:
Diffstat (limited to 'epare/simulate.py')
-rw-r--r--epare/simulate.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/epare/simulate.py b/epare/simulate.py
index f4c3786..7a0d4b0 100644
--- a/epare/simulate.py
+++ b/epare/simulate.py
@@ -117,5 +117,5 @@ if __name__ == "__main__":
raise error
res = future.result()
print(f"Got {mult} in {res.duration}.")
- with (outdir / f"multiples_{bits}_{kind}_chunk{chunk_id}.pickle").open("ab") as f:
+ with (outdir / f"multiples_{bits}_{kind}_{'init' if use_init else 'noinit'}_{'mult' if use_multiply else 'nomult'}_chunk{chunk_id}.pickle").open("ab") as f:
pickle.dump((mult, res), f)