Skip to content

Commit

Permalink
🤖 Format .jl files
Browse files Browse the repository at this point in the history
  • Loading branch information
tmigot authored and dpo committed Aug 8, 2022
1 parent ebb3ab2 commit 960dde2
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions src/CUTEst.jl
Original file line number Diff line number Diff line change
Expand Up @@ -377,11 +377,26 @@ function CUTEstModel(
clinrows = Vector{Int32}(undef, lin_nnzj)
clincols = Vector{Int32}(undef, lin_nnzj)
clinvals = Vector{Float64}(undef, lin_nnzj)

Jval = Array{Cdouble}(undef, nvar)
Jvar = Array{Cint}(undef, nvar)

nlp = CUTEstModel(meta, Counters(), hrows, hcols, jac_structure_reliable, jrows, jcols, lin_structure_reliable, clinrows, clincols, clinvals, work, Jval, Jvar)
nlp = CUTEstModel(
meta,
Counters(),
hrows,
hcols,
jac_structure_reliable,
jrows,
jcols,
lin_structure_reliable,
clinrows,
clincols,
clinvals,
work,
Jval,
Jvar,
)

cutest_instances += 1
finalizer(cutest_finalize, nlp)
Expand Down

0 comments on commit 960dde2

Please sign in to comment.