Skip to content

Commit

Permalink
🤖 Format .jl files
Browse files Browse the repository at this point in the history
  • Loading branch information
abelsiqueira committed Dec 17, 2021
1 parent d1d1b5c commit 8363d84
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/feasibility-residual.jl
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,7 @@ function FeasibilityResidual(
uvar = nlp.meta.uvar,
nnzj = 0,
)
nls_meta = NLSMeta{T, S}(
m,
n,
nnzj = nlp.meta.nnzj,
nnzh = nlp.meta.nnzh,
lin = nlp.meta.lin,
)
nls_meta = NLSMeta{T, S}(m, n, nnzj = nlp.meta.nnzj, nnzh = nlp.meta.nnzh, lin = nlp.meta.lin)
nls = FeasibilityResidual(meta, nls_meta, NLSCounters(), nlp)
finalizer(nls -> finalize(nls.nlp), nls)

Expand Down

2 comments on commit 8363d84

@abelsiqueira
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request updated: JuliaRegistries/General/50750

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.5.0 -m "<description of version>" 8363d8477e16119c18c9e4253c1b2b546ad9358d
git push origin v0.5.0

Please sign in to comment.