From 7e89b98cc47ca6ff1b04bc9cafc163bcb14e6621 Mon Sep 17 00:00:00 2001 From: scuti Date: Sat, 13 Dec 2025 17:04:21 -0800 Subject: [PATCH] (Minor) Fixed file names. --- econ-demo.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/econ-demo.py b/econ-demo.py index 75e4071..4d5962b 100644 --- a/econ-demo.py +++ b/econ-demo.py @@ -576,13 +576,14 @@ if __name__ == "__main__": s = Sim(participants, balances) result = s.run(update=mini_dividend) s.TITLE = "Constant dividend with new players joining and trading" - # s.visualize(result, "const-new-players-trade.png") + s.visualize(result, filename="const-new-players-trade.png") t = Sim(participants, balances) result2 = t.run(update=mini_apy) t.TITLE = "APY with new people joining and trading" - # t.visualize(result2, "apy-new-playrs-trade.png") + t.visualize(result2, filename="apy-new-playrs-trade.png") + alt_starting_balance = [1,1,1] u = Sim(participants, balances) u.IS_HALVING = True result3 = u.run(update=mini_dividend)