Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions docs/src/tutorials/tutorial_1.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,7 @@ getfund(; nsteps = default_nsteps, datadir = default_datadir, params = default_p
```
Thus there are no required arguments, although the user can input `nsteps` to define the number of timesteps (years in this case) the model runs for, `datadir` to define the location of the input data, and `params`, a dictionary definining the parameters of the model. For example, if you wish to see only the first 100 timesteps,you may use:
```
include("src/fund.jl")
using .Fund
using MimiFUND
m = getfund(nsteps = 100)
run(m)
```
Expand Down