We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77714b1 commit 7d8d4d2Copy full SHA for 7d8d4d2
src/nls/meta.jl
@@ -53,11 +53,11 @@ struct NLSMeta{T, S}
53
nnzj = nequ * nvar,
54
nnzh = div(nvar * (nvar + 1), 2),
55
lin = Int[],
56
- jacobian_residual_available::Bool = true
57
- hessian_residual_available::Bool = true
58
- Jv_residual_available::Bool = true
59
- Jtv_residual_available::Bool = true
60
- Hv_residual_available::Bool = true
+ jacobian_residual_available::Bool = true,
+ hessian_residual_available::Bool = true,
+ Jv_residual_available::Bool = true,
+ Jtv_residual_available::Bool = true,
+ Hv_residual_available::Bool = true,
61
) where {T, S}
62
nnzj = max(0, nnzj)
63
nnzh = max(0, nnzh)
0 commit comments