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
4 changes: 2 additions & 2 deletions docs/src/basics/Debugging.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ sys = mtkcompile(sys)
This problem causes the ODE solver to crash:

```@repl debug
prob = ODEProblem(sys, [], (0.0, 10.0), []);
prob = ODEProblem(sys, [], (0.0, 10.0));
sol = solve(prob, Tsit5());
```

Expand All @@ -28,7 +28,7 @@ In such situations, the `debug_system` function is helpful:

```@repl debug
dsys = debug_system(sys; functions = [sqrt]);
dprob = ODEProblem(dsys, [], (0.0, 10.0), []);
dprob = ODEProblem(dsys, [], (0.0, 10.0));
dsol = solve(dprob, Tsit5());
```

Expand Down
Loading