Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Nov 23, 2022
1 parent 09d9e32 commit 98791e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jacobian.jl
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function jacobian(f, x, solver)
if alg_autodiff(solver.alg)
J = ForwardDiff.jacobian(f, x)
else
J = FiniteDiff.finite_difference_jacobian(f, x, alg_difftype(alg), eltype(x))
J = FiniteDiff.finite_difference_jacobian(f, x, alg_difftype(solver.alg), eltype(x))
end
return J
end
Expand Down

0 comments on commit 98791e9

Please sign in to comment.