We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be58861 commit 4ac3c21Copy full SHA for 4ac3c21
docs/src/basics/faq.md
@@ -58,7 +58,7 @@ function fff_incorrect(var, p)
58
end
59
60
v_true = [1.0, 0.1, 2.0, 0.5]
61
-v_init = v_true .+ randn!(similar(v_true)) * 0.1
+v_init = v_true .+ Random.randn!(similar(v_true)) * 0.1
62
63
prob_oop = NLS.NonlinearLeastSquaresProblem{false}(fff_incorrect, v_init)
64
try
@@ -145,7 +145,7 @@ it will be dynamic and lead to dynamic dispatch. To fix this, we directly specif
145
chunksize:
146
147
```@example type_unstable
148
-@code_warntype solve(
+InteractiveUtils.@code_warntype solve(
149
prob,
150
NewtonRaphson(;
151
autodiff = AutoForwardDiff(; chunksize = NonlinearSolve.pickchunksize(prob.u0))
0 commit comments