Skip to content

Commit

Permalink
Support ArrayLayouts v0.4 (#7)
Browse files Browse the repository at this point in the history
* Support ArrayLayouts v0.4

* Update Project.toml
  • Loading branch information
dlfivefifty authored Aug 13, 2020
1 parent 15524ce commit 44d8daf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "SemiseparableMatrices"
uuid = "f8ebbe35-cbfb-4060-bf7f-b10e4670cf57"
authors = ["Sheehan Olver <[email protected]>"]
version = "0.1.1"
version = "0.1.2"

[deps]
ArrayLayouts = "4c555306-a7a7-4459-81d9-ec55ddd5c99a"
Expand All @@ -13,11 +13,11 @@ LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
MatrixFactorizations = "a3b82374-2e81-5b9e-98ce-41277c0e4c87"

[compat]
ArrayLayouts = "0.2.6, 0.3"
ArrayLayouts = "0.2.6, 0.3, 0.4"
BandedMatrices = "0.15.6"
BlockBandedMatrices = "0.8.3"
LazyArrays = "0.16.7"
LazyBandedMatrices = "0.2.7"
BlockBandedMatrices = "0.8.3, 0.9"
LazyArrays = "0.16.7, 0.17"
LazyBandedMatrices = "0.2.7, 0.3"
MatrixFactorizations = "0.4, 0.5"
julia = "1.3"

Expand Down
2 changes: 1 addition & 1 deletion src/AlmostBandedMatrix.jl
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function AlmostBandedMatrix{T}(A::AlmostBandedMatrix, (l,u)::NTuple{2,Integer})
for b = u_in+1:u
B[band(b)] .= L[band(b)]
end
AlmostBandedMatrix{T}(B, copy(L))
AlmostBandedMatrix{T}(B, deepcopy(L))
end

AlmostBandedMatrix(A::AlmostBandedMatrix{T}, (l,u)::NTuple{2,Integer}) where T = AlmostBandedMatrix{T}(A, (l,u))
Expand Down

2 comments on commit 44d8daf

@dlfivefifty
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
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/19435

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.2 -m "<description of version>" 44d8daf1b68190159c3d6820d29070dd0a840d3f
git push origin v0.1.2

Please sign in to comment.