Skip to content

Commit aac9558

Browse files
fix more depwarns
1 parent 488d94f commit aac9558

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/DiffEqDevTools.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
module DiffEqDevTools
22

33
using DiffEqBase, RecipesBase, RecursiveArrayTools, DiffEqNoiseProcess, StructArrays
4+
using NLsolve, LinearAlgebra, RootedTrees
45

56
using LinearAlgebra, Distributed
67

src/tableau_info.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
using NLsolve, LinearAlgebra, RootedTrees
21
"""
32
`Base.length(tab::ODERKTableau)`
43
@@ -48,7 +47,7 @@ function RootedTrees.residual_order_condition(tab::ODERKTableau, order::Int,
4847
end
4948
else
5049
resid = mapreduce(reducer, RootedTreeIterator(order)) do t
51-
mapper(residual_order_condition(t, A, b, c))
50+
mapper(residual_order_condition(t, RungeKuttaMethod(A, b, c)))
5251
end
5352
end
5453
return resid

0 commit comments

Comments
 (0)