Skip to content

Commit

Permalink
Accessor function instead of field access in checkbandmatch (#406)
Browse files Browse the repository at this point in the history
* Accessor function instead of field access in checkbandmatch

* Bump version to v1.2.0

* fix argument order
  • Loading branch information
jishnub committed Nov 6, 2023
1 parent ee92759 commit 9bac991
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "BandedMatrices"
uuid = "aae01518-5342-5314-be14-df237901396f"
version = "1.1.0"
version = "1.2.0"

[deps]
ArrayLayouts = "4c555306-a7a7-4459-81d9-ec55ddd5c99a"
Expand Down
2 changes: 1 addition & 1 deletion src/generic/Band.jl
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ function checkbandmatch(A::AbstractMatrix{T}, V::AbstractVector, k::Integer, jr:
end

function checkbandmatch(A::AbstractMatrix{T}, V::AbstractMatrix, kr::AbstractRange, jr::AbstractRange) where {T}
u, l = A.u, A.l
l, u = bandwidths(A)
jj = 1
for j in jr
kk = 1
Expand Down

2 comments on commit 9bac991

@jishnub
Copy link
Member Author

@jishnub jishnub commented on 9bac991 Nov 6, 2023

Choose a reason for hiding this comment

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

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

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 v1.2.0 -m "<description of version>" 9bac991e50c31db2ba76d1705430eeaf6212caaa
git push origin v1.2.0

Please sign in to comment.