Skip to content
This repository was archived by the owner on Jul 19, 2023. It is now read-only.

Commit 5ed3276

Browse files
Merge pull request #255 from dlfivefifty/dl/blockbandedmatrices08
Support BlockBandedMatrices 0.8
2 parents 3196323 + 856c7f6 commit 5ed3276

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

Project.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ BlockBandedMatrices = "ffab5731-97b5-5995-9138-79e8c1846df0"
99
DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e"
1010
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
1111
LazyArrays = "5078a376-72f3-5289-bfd5-ec5146d43c02"
12+
LazyBandedMatrices = "d7e5e226-e90b-4449-9968-0f923699bf6f"
1213
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1314
ModelingToolkit = "961ee093-0014-501f-94e3-6117800e7a78"
1415
NNlib = "872c559c-99b0-510c-b3b7-b6c96a88d5cd"
@@ -17,11 +18,12 @@ StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
1718
SuiteSparse = "4607b0f0-06f3-5cda-b6b1-a6196a1729e9"
1819

1920
[compat]
20-
BandedMatrices = "0.12, 0.13, 0.14, 0.15"
21-
BlockBandedMatrices = "0.6, 0.7"
21+
BandedMatrices = "0.15.11"
22+
BlockBandedMatrices = "0.8.6"
2223
DiffEqBase = "6.4.1"
2324
ForwardDiff = "0.10"
24-
LazyArrays = "0.14, 0.15, 0.16"
25+
LazyArrays = "0.16.12"
26+
LazyBandedMatrices = "0.2.11"
2527
ModelingToolkit = "0.10.0, 1.0, 2.0, 3.0"
2628
NNlib = "0.6"
2729
StaticArrays = "0.10, 0.11, 0.12"

src/DiffEqOperators.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ using DiffEqBase, StaticArrays, LinearAlgebra
55
import LinearAlgebra: mul!, ldiv!, lmul!, rmul!, axpy!, opnorm, factorize, I
66
import DiffEqBase: AbstractDiffEqLinearOperator, update_coefficients!, isconstant
77
using SparseArrays, ForwardDiff, BandedMatrices, NNlib, LazyArrays, BlockBandedMatrices
8-
using ModelingToolkit
8+
using LazyBandedMatrices, ModelingToolkit
99

1010
abstract type AbstractDerivativeOperator{T} <: AbstractDiffEqLinearOperator{T} end
1111
abstract type AbstractDiffEqCompositeOperator{T} <: AbstractDiffEqLinearOperator{T} end

0 commit comments

Comments
 (0)