Skip to content

Commit 502f61f

Browse files
chore: bump RecursiveArrayTools compat (#272)
* chore: bump RecursiveArrayTools compat * refactor: fix ODEFunctionWrapper
1 parent cb77137 commit 502f61f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ ArrayInterface = "6, 7"
2222
DataStructures = "0.18"
2323
DiffEqBase = "6.122"
2424
OrdinaryDiffEq = "6.49.1"
25-
RecursiveArrayTools = "2"
25+
RecursiveArrayTools = "2, 3"
2626
Reexport = "0.2, 1.0"
2727
SciMLBase = "1.90, 2"
2828
SimpleNonlinearSolve = "0.1, 1"

src/functionwrapper.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ struct ODEFunctionWrapper{iip, F, H, TMM, Ta, Tt, TJ, JP, SP, TW, TWt, TPJ, S, T
3737
Wfact::TW
3838
Wfact_t::TWt
3939
paramjac::TPJ
40-
syms::S
40+
sys::S
4141
colorvec::TCV
4242
end
4343

@@ -51,7 +51,7 @@ function ODEFunctionWrapper(f::DiffEqBase.AbstractDDEFunction, h)
5151
typeof(f.analytic), typeof(f.tgrad), typeof(jac),
5252
typeof(f.jac_prototype), typeof(f.sparsity),
5353
typeof(Wfact), typeof(Wfact_t),
54-
typeof(f.paramjac), typeof(f.syms), typeof(f.colorvec)}(f.f, h,
54+
typeof(f.paramjac), typeof(f.sys), typeof(f.colorvec)}(f.f, h,
5555
f.mass_matrix,
5656
f.analytic,
5757
f.tgrad, jac,
@@ -60,7 +60,7 @@ function ODEFunctionWrapper(f::DiffEqBase.AbstractDDEFunction, h)
6060
Wfact,
6161
Wfact_t,
6262
f.paramjac,
63-
f.syms,
63+
f.sys,
6464
f.colorvec)
6565
end
6666

0 commit comments

Comments
 (0)