Skip to content

Commit 3a81268

Browse files
Merge pull request #54 from JuliaDiffEq/recursive
RecursiveArrayTools 2.0
2 parents 824f521 + d95d96c commit 3a81268

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ DiffEqNoiseProcess = "3.3"
2121
DiffEqProblemLibrary = "4.5"
2222
NLsolve = "4.2"
2323
RecipesBase = "0.7"
24-
RecursiveArrayTools = "1.0"
24+
RecursiveArrayTools = "2"
2525
julia = "1"
2626

2727
[extras]

src/test_solution.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
TestSolution
33
44
"""
5-
mutable struct TestSolution{T,N,hasinterp,tType,uType,iType} <: AbstractTimeseriesSolution{T,N}
5+
mutable struct TestSolution{T,N,hasinterp,tType,uType,iType} <: AbstractTimeseriesSolution{T,N,uType}
66
t::tType
77
u::uType
88
interp::iType
@@ -91,7 +91,6 @@ end
9191
function appxtrue(sim::EnsembleSolution,appx_setup;kwargs...)
9292
_new_sols = Vector{DESolution}(length(sim.u))
9393
for i in eachindex(sim)
94-
@show i
9594
prob = sim[i].prob
9695
prob2 = SDEProblem(prob.f,prob.g,prob.u0,prob.tspan,noise=NoiseWrapper(sim[i].W))
9796
true_sol = solve(prob2,appx_setup[:alg];appx_setup...)

0 commit comments

Comments
 (0)