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

Commit b047ed0

Browse files
committed
Support BlockBandedMatrices 0.8
1 parent 3196323 commit b047ed0

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

Project.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,12 @@ StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
1717
SuiteSparse = "4607b0f0-06f3-5cda-b6b1-a6196a1729e9"
1818

1919
[compat]
20-
BandedMatrices = "0.12, 0.13, 0.14, 0.15"
21-
BlockBandedMatrices = "0.6, 0.7"
20+
BandedMatrices = "0.15.11"
21+
BlockBandedMatrices = "0.8.6"
2222
DiffEqBase = "6.4.1"
2323
ForwardDiff = "0.10"
24-
LazyArrays = "0.14, 0.15, 0.16"
24+
LazyArrays = "0.16.12"
25+
LazyBandedMatrices = "0.2.11"
2526
ModelingToolkit = "0.10.0, 1.0, 2.0, 3.0"
2627
NNlib = "0.6"
2728
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)