Skip to content

Commit

Permalink
Improve backward compatibilty
Browse files Browse the repository at this point in the history
  • Loading branch information
dlfivefifty committed Dec 5, 2018
1 parent a38859c commit 3293a34
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/BandedMatrices.jl
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ import LazyArrays: MemoryLayout, @lazymul, @lazylmul, @lazyldiv,
AbstractBandedLayout, DiagonalLayout,
ArrayMulArrayStyle, HermitianLayout, hermitianlayout, hermitiandata,
MulAdd, materialize!, BlasMatMulMat, BlasMatMulVec, VcatLayout, ZerosLayout,
AbstractColumnMajor, MulLayout, colsupport, rowsupport
AbstractColumnMajor, MulLayout, colsupport, rowsupport,
DenseColumnMajor, DenseRowMajor
import FillArrays: AbstractFill

export BandedMatrix,
Expand Down
3 changes: 2 additions & 1 deletion src/generic/broadcast.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ end

const BandedColumnMajor = BandedColumns{<:AbstractColumnMajor}
const BandedRowMajor = BandedRows{<:AbstractColumnMajor}

BandedColumnMajor() = BandedColumns(DenseColumnMajor())
BandedRowMajor() = Bandeds(DenseRowMajor())

transposelayout(M::BandedColumns) = BandedRows(M.layout)
transposelayout(M::BandedRows) = BandedColumns(M.layout)
Expand Down

0 comments on commit 3293a34

Please sign in to comment.