We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In this code,
using LineSearches
ϕ(x) = (x - π)^4 dϕ(x) = 4*(x-π)^3 ϕdϕ(x) = ϕ(x),dϕ(x)
α0 = 9.0 ϕ0 = ϕ(0.0) dϕ0 = dϕ(0.0)
for ls in (Static,BackTracking,HagerZhang,MoreThuente,StrongWolfe) res = (ls())(ϕ, dϕ, ϕdϕ, α0, ϕ0,dϕ0) println(ls, ": ", res) end
what res is returning ? Like a new search direction and then say the \alpha value (here like x + \alpha new_search_direction)
Thanks.
The text was updated successfully, but these errors were encountered:
Solved issue.
Sorry, something went wrong.
No branches or pull requests
In this code,
using LineSearches
ϕ(x) = (x - π)^4
dϕ(x) = 4*(x-π)^3
ϕdϕ(x) = ϕ(x),dϕ(x)
α0 = 9.0
ϕ0 = ϕ(0.0)
dϕ0 = dϕ(0.0)
for ls in (Static,BackTracking,HagerZhang,MoreThuente,StrongWolfe)
res = (ls())(ϕ, dϕ, ϕdϕ, α0, ϕ0,dϕ0)
println(ls, ": ", res)
end
what res is returning ? Like a new search direction and then say the \alpha value (here like x + \alpha new_search_direction)
Thanks.
The text was updated successfully, but these errors were encountered: