aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorGuillermo Ramos2025-02-16 14:11:44 +0100
committerGuillermo Ramos2025-02-16 19:31:48 +0100
commit472b540de459ade8ce8f9b16b97de06020dede30 (patch)
treebde7c112cd7757bd10d348d5ba41a8d83ee29cda /src/main.rs
parent87d79dbda299de242aa2a4420df2a447274dc355 (diff)
downloadhiccup-472b540de459ade8ce8f9b16b97de06020dede30.tar.gz
SimUpdates default instead of ::new
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 80d7ae7..5ca388b 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -5,7 +5,7 @@ fn main() {
let updates: SimUpdates = Amortize(12_000.).every(12).and(Amortize(30_000.).at(1));
// let mut sim = Simulation::new(200_000., 0.01621, 30);
- // let updates: SimUpdates = SimUpdates::new();
+ // let updates: SimUpdates = SimUpdates::default();
sim.run(updates);
sim.render_table();