Skip to content

Commit 19e24a4

Browse files
TorkelEisaacsas
andcommitted
Update docs/src/catalyst_applications/jump_simulation_performance.md
Co-authored-by: Sam Isaacson <[email protected]>
1 parent 5e09e6c commit 19e24a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/catalyst_applications/jump_simulation_performance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ nothing # hide
4444
```
4545
However, if we were to simulate our model now, the solution would only actually be saved at its initial and final times. To remedy this, we provide the `saveat = 1.0` argument to the `solve` command, causing the solution to be saved at every `1.0`th time unit (at `t` = `0.0`, `1.0`, `2.0`, ... `999.0`, `1000.0`).
4646
```@example jump_simulation_performance_1
47-
sol = solve(jprob, SSAStepper(),saveat=1.0)
47+
sol = solve(jprob, SSAStepper(), saveat = 1.0)
4848
nothing # hide
4949
```
5050
we can now plot the new solution:

0 commit comments

Comments
 (0)