Skip to content

Commit

Permalink
🤖 Format .jl files
Browse files Browse the repository at this point in the history
  • Loading branch information
paraynaud committed Jul 20, 2022
1 parent 6d0594a commit b1f9dd5
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/tr_cg_part_data.jl
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ function partitionedTrunk(
while absolute(n, gₖ, ϵ) &&
relative(n, gₖ, ϵ, ∇fNorm2) &&
_max_iter(iter, max_iter) & _max_time(start_time) # stop condition

iter += 1
cg_res = Krylov.cg(B, -gₖ, atol = T(atol), rtol = cgtol, radius = T(Δ), itmax = max(2 * n, 50))
sₖ .= cg_res[1] # the step deduce by cg
Expand Down

2 comments on commit b1f9dd5

@paraynaud
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 created: JuliaRegistries/General/64576

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.1.0 -m "<description of version>" b1f9dd5434c8068b1bfabe26dd3051c28fe7d764
git push origin v0.1.0

Please sign in to comment.