Skip to content

Commit 0355e71

Browse files
committed
Fix abstol in NLLS docs
1 parent 7e25d47 commit 0355e71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/tutorials/solve_nlls_bvp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ end
3535
tspan = (0.0, 100.0)
3636
u0 = [0.0, 1.0]
3737
prob = BVProblem(BVPFunction(f!, bc!; bcresid_prototype = zeros(3)), u0, tspan)
38-
sol = solve(prob, MIRK4(), dt = 0.01)
38+
sol = solve(prob, MIRK4(), dt = 0.01, abstol = 1e-3)
3939
plot(sol)
4040
```
4141

0 commit comments

Comments
 (0)