diff options
| author | Guillermo Ramos | 2025-02-16 19:09:34 +0100 | 
|---|---|---|
| committer | Guillermo Ramos | 2025-02-16 19:50:26 +0100 | 
| commit | 91588159234f7fe357a3fd0887367364a71e0df9 (patch) | |
| tree | 4763ee048cf9441210a1c19b7a9c78f75844103e /src | |
| parent | e006f43619f8763750baf98f14ffa095f19f2b2b (diff) | |
| download | hiccup-91588159234f7fe357a3fd0887367364a71e0df9.tar.gz | |
Elm round values
Diffstat (limited to 'src')
| -rw-r--r-- | src/bin/cli.rs | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/src/bin/cli.rs b/src/bin/cli.rs index 5ca388b..c7672c6 100644 --- a/src/bin/cli.rs +++ b/src/bin/cli.rs @@ -1,11 +1,11 @@  use hiccup::{SimUpdate::*, SimUpdates, Simulation};  fn main() { -    let mut sim = Simulation::new(390_000., 0.028, 30); -    let updates: SimUpdates = Amortize(12_000.).every(12).and(Amortize(30_000.).at(1)); +    // let mut sim = Simulation::new(390_000., 0.028, 30); +    // 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::default(); +    let mut sim = Simulation::new(200_000., 0.01621, 30); +    let updates: SimUpdates = SimUpdates::default();      sim.run(updates);      sim.render_table(); | 
