File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -783,9 +783,9 @@ Examples:
783783
784784``` julia
785785sol = solve (prob, Rosenbrock23 ()) # Standard, uses autodiff
786- sol = solve (prob, Rosenbrock23 (chunk_size = 10 )) # Autodiff with chunksize of 10
787- sol = solve (prob, Rosenbrock23 (autodiff = false )) # Numerical differentiation with central differencing
788- sol = solve (prob, Rosenbrock23 (autodiff = false , diff_type = Val{:forward })) # Numerical differentiation with forward differencing
786+ sol = solve (prob, Rosenbrock23 (autodiff = AutoForwardDiff (chunksize = 10 )) # Autodiff with chunksize of 10
787+ sol = solve (prob, Rosenbrock23 (autodiff = AutoFiniteDiff ( )) # Numerical differentiation with central differencing
788+ sol = solve (prob, Rosenbrock23 (autodiff = AutoFiniteDiff (fdtype = Val{:forward })) # Numerical differentiation with forward differencing
789789```
790790
791791#### Tableau Method
You can’t perform that action at this time.
0 commit comments