Skip to content

Commit

Permalink
Remove debug line and register version
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver Kliebisch committed Apr 17, 2021
1 parent a811710 commit a36336a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/profiles.jl
Original file line number Diff line number Diff line change
Expand Up @@ -486,9 +486,7 @@ function hartmann_tran_lineshape(

# find a suitable bisection for integrating the data into the vector
ind_lo = searchsortedfirst(ν, ν_0 - ν_wing_val)
ind_hi = searchsortedlast(ν, ν_0 + ν_wing_val)

#println(join((factor, ν_0, ν_VC, γ_D, γ_0, γ_2, Δ_0, Δ_2, η), ", "))
ind_hi = searchsortedlast(ν, ν_0 + ν_wing_val)

hartmann_tran_profile!(out_cache, @view(ν[ind_lo:ind_hi]), ν_0, ν_VC, γ_D, γ_0, γ_2, Δ_0, Δ_2, η)
for i = 1:(ind_hi - ind_lo + 1)
Expand Down

2 comments on commit a36336a

@TacHawkes
Copy link
Owner

Choose a reason for hiding this comment

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

@JuliaRegistrator register

Release notes:
-Hotfix for undefined vector memory in 0.2.5

@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/34576

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

Please sign in to comment.