We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 351cb7f commit 45650b6Copy full SHA for 45650b6
src/optim_tests/multivariate/from_optim.jl
@@ -25,7 +25,7 @@ function exponential_hessian!(storage::Matrix, x::Vector)
25
storage[1, 1] = 2.0 * exp((2.0 - x[1])^2) * (2.0 * x[1]^2 - 8.0 * x[1] + 9)
26
storage[1, 2] = 0.0
27
storage[2, 1] = 0.0
28
- storage[2, 2] = 2.0 * exp((3.0 - x[1])^2) * (2.0 * x[2]^2 - 12.0 * x[2] + 19)
+ storage[2, 2] = 2.0 * exp((3.0 - x[2])^2) * (2.0 * x[2]^2 - 12.0 * x[2] + 19)
29
end
30
31
examples["Exponential"] = OptimizationProblem("Exponential",
0 commit comments