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"
98
98
CommonSolve = " 0.2.4"
99
99
Compat = " 3.42, 4"
100
100
ConstructionBase = " 1"
101
- DataInterpolations = " 6.4, 7, 8"
101
+ DataInterpolations = " 7, 8"
102
102
DataStructures = " 0.17, 0.18"
103
103
DeepDiffs = " 1"
104
104
DelayDiffEq = " 5.50"
Original file line number Diff line number Diff line change 257
257
258
258
@testset " Concrete function type" begin
259
259
ts = 0.0 : 0.1 : 1.0
260
- interp = LinearInterpolation (ts .^ 2 , ts; extrapolate = true )
260
+ interp = LinearInterpolation (ts .^ 2 , ts; extrapolation = ExtrapolationType . Extension )
261
261
@variables x (t)
262
262
@parameters (fn:: typeof (interp))(.. )
263
263
@mtkcompile sys = System (D (x) ~ fn (x), t)
267
267
@inferred getter (prob)
268
268
@inferred prob. f (prob. u0, prob. p, prob. tspan[1 ])
269
269
@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 )
271
271
@test_nowarn sol = solve (prob)
272
272
end
273
273
end
You can’t perform that action at this time.
0 commit comments