Skip to content

Commit

Permalink
Added missing changes due to renaming (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
petres authored Dec 5, 2024
1 parent 2fbbd74 commit bbab5a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ parameters = BeforeIT.AUSTRIA2010Q1.parameters
initial_conditions = BeforeIT.AUSTRIA2010Q1.initial_conditions

T = 20
model = BeforeIT.initialise_model(parameters, initial_conditions, T)
model = BeforeIT.init_model(parameters, initial_conditions, T)
data = BeforeIT.run_one_sim!(model)
```

Expand Down
2 changes: 1 addition & 1 deletion src/one_simulation.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ for each epoch using `BeforeIT.run_one_epoch!(model)` and `BeforeIT.update_data!
# Example
```julia
model = BeforeIT.initialize_model(parameters, initial_conditions, T)
model = BeforeIT.init_model(parameters, initial_conditions, T)
data = run_one_sim!(model)
"""
function run_one_sim!(model; multi_threading = false, shock = NoShock())
Expand Down

0 comments on commit bbab5a8

Please sign in to comment.