Skip to content

Commit 0dfc135

Browse files
authored
Merge pull request #400 from SciML/ap/oops
pass in linesearch
2 parents d8d9eea + 2a35fe4 commit 0dfc135

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "NonlinearSolve"
22
uuid = "8913a72c-1f9b-4ce2-8d82-65094dcecaec"
33
authors = ["SciML"]
4-
version = "3.9.0"
4+
version = "3.9.1"
55

66
[deps]
77
ADTypes = "47edcb42-4c32-4615-8424-f2b9edc5f35b"

src/algorithms/gauss_newton.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ function GaussNewton(; concrete_jac = nothing, linsolve = nothing, precs = DEFAU
1010
linesearch = NoLineSearch(), vjp_autodiff = nothing, autodiff = nothing)
1111
descent = NewtonDescent(; linsolve, precs)
1212
return GeneralizedFirstOrderAlgorithm(; concrete_jac, name = :GaussNewton, descent,
13-
jacobian_ad = autodiff, reverse_ad = vjp_autodiff)
13+
jacobian_ad = autodiff, reverse_ad = vjp_autodiff, linesearch)
1414
end

0 commit comments

Comments
 (0)