Skip to content

Commit 9a4428d

Browse files
fix for newer problem library
1 parent d84dd08 commit 9a4428d

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

test/common_interface/arkode.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
using Sundials, Test
22
using DiffEqProblemLibrary
3-
using DiffEqProblemLibrary.ODEProblemLibrary: prob_ode_linear
3+
using DiffEqProblemLibrary.ODEProblemLibrary: importodeproblems; importodeproblems()
4+
import DiffEqProblemLibrary.ODEProblemLibrary: prob_ode_linear, prob_ode_2Dlinear
45

56
prob = prob_ode_linear
67
dt = 1//2^(4)

test/common_interface/cvode.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
using Sundials, Test
22
using DiffEqProblemLibrary
3-
using DiffEqProblemLibrary.ODEProblemLibrary: prob_ode_linear, prob_ode_2Dlinear
3+
using DiffEqProblemLibrary.ODEProblemLibrary: importodeproblems; importodeproblems()
4+
import DiffEqProblemLibrary.ODEProblemLibrary: prob_ode_linear, prob_ode_2Dlinear
45

56
prob = prob_ode_linear
67
dt = 1//2^(4)

test/common_interface/ida.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using DiffEqProblemLibrary, Sundials, Test
2+
using DiffEqProblemLibrary.DAEProblemLibrary: importdaeproblems; importdaeproblems()
23
using DiffEqProblemLibrary.DAEProblemLibrary: prob_dae_resrob
34

45
# Test DAE

test/common_interface/iterators.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using DiffEqProblemLibrary, Sundials, Test
2-
using DiffEqProblemLibrary.ODEProblemLibrary: prob_ode_2Dlinear
2+
using DiffEqProblemLibrary.ODEProblemLibrary: importodeproblems; importodeproblems()
3+
import DiffEqProblemLibrary.ODEProblemLibrary: prob_ode_linear, prob_ode_2Dlinear
34

45
prob = prob_ode_2Dlinear
56
integrator = init(prob,CVODE_BDF())

0 commit comments

Comments
 (0)