File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ Combinatorics = "1"
9898CommonSolve = " 0.2.4"
9999Compat = " 3.42, 4"
100100ConstructionBase = " 1"
101- DataInterpolations = " 6.4, 7, 8"
101+ DataInterpolations = " 7, 8"
102102DataStructures = " 0.17, 0.18"
103103DeepDiffs = " 1"
104104DelayDiffEq = " 5.50"
Original file line number Diff line number Diff line change 257257
258258 @testset " Concrete function type" begin
259259 ts = 0.0 : 0.1 : 1.0
260- interp = LinearInterpolation (ts .^ 2 , ts; extrapolate = true )
260+ interp = LinearInterpolation (ts .^ 2 , ts; extrapolation = ExtrapolationType . Extension )
261261 @variables x (t)
262262 @parameters (fn:: typeof (interp))(.. )
263263 @mtkcompile sys = System (D (x) ~ fn (x), t)
267267 @inferred getter (prob)
268268 @inferred prob. f (prob. u0, prob. p, prob. tspan[1 ])
269269 @test_nowarn sol = solve (prob, Tsit5 ())
270- @test_nowarn prob. ps[fn] = LinearInterpolation (ts .^ 3 , ts; extrapolate = true )
270+ @test_nowarn prob. ps[fn] = LinearInterpolation (ts .^ 3 , ts; extrapolation = ExtrapolationType . Extension )
271271 @test_nowarn sol = solve (prob)
272272 end
273273end
You can’t perform that action at this time.
0 commit comments