Skip to content

Commit 9aacb0d

Browse files
Merge pull request #123 from ErikQQY/qqy/fix_bvp
Use the right solve in BVP WorkPrecision
2 parents d415eac + 879504f commit 9aacb0d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "DiffEqDevTools"
22
uuid = "f3b72e0c-5b89-59e1-b016-84e28bfd966d"
33
authors = ["Chris Rackauckas <[email protected]>"]
4-
version = "2.41.0"
4+
version = "2.41.1"
55

66
[deps]
77
DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e"

src/benchmark.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ function WorkPrecision(prob::AbstractBVProblem, alg, abstols, reltols, dts = not
314314
reltol = reltols[i], timeseries_errors = timeseries_errors,
315315
dense_errors = dense_errors)
316316
else
317-
sol = DiffEqBase.solve(_prob, alg; kwargs..., abstol = abstols[i],
317+
sol = solve(_prob, alg; kwargs..., abstol = abstols[i],
318318
reltol = reltols[i], dt = dts[i],
319319
timeseries_errors = timeseries_errors,
320320
dense_errors = dense_errors)

0 commit comments

Comments
 (0)