Skip to content

Commit 03db34c

Browse files
Merge pull request #93 from SciML/problemlibrary
update problem libraries
2 parents 1647355 + 086d04b commit 03db34c

File tree

5 files changed

+11
-21
lines changed

5 files changed

+11
-21
lines changed

Project.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
1919
DelayDiffEq = "5.20"
2020
DiffEqBase = "6.94.4"
2121
DiffEqNoiseProcess = "5.0"
22-
DiffEqProblemLibrary = "4.5"
2322
NLsolve = "4.2"
2423
RecipesBase = "0.7, 0.8, 1.0"
2524
RecursiveArrayTools = "2"
@@ -28,13 +27,15 @@ julia = "1.6"
2827

2928
[extras]
3029
DelayDiffEq = "bcd4f6db-9728-5f36-b5f7-82caef46ccdb"
31-
DiffEqProblemLibrary = "a077e3f3-b75c-5d7f-a0c6-6bc4c8ec64a9"
30+
DDEProblemLibrary = "f42792ee-6ffc-4e2a-ae83-8ee2f22de800"
31+
ODEProblemLibrary = "fdc4e326-1af4-4b90-96e7-779fcce2daa5"
3232
OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed"
3333
ParameterizedFunctions = "65888b18-ceab-5e60-b2b9-181511a3b968"
3434
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
35+
SDEProblemLibrary = "c72e72a9-a271-4b2b-8966-303ed956772e"
3536
StochasticDelayDiffEq = "29a0d76e-afc8-11e9-03a4-eda52ae4b960"
3637
StochasticDiffEq = "789caeaf-c7a9-5a7d-9973-96adeb23e2a0"
3738
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
3839

3940
[targets]
40-
test = ["DelayDiffEq", "DiffEqProblemLibrary", "OrdinaryDiffEq", "ParameterizedFunctions", "Random", "StochasticDiffEq", "StochasticDelayDiffEq", "Test"]
41+
test = ["DelayDiffEq", "DDEProblemLibrary", "ODEProblemLibrary", "SDEProblemLibrary", "OrdinaryDiffEq", "ParameterizedFunctions", "Random", "StochasticDiffEq", "StochasticDelayDiffEq", "Test"]

test/analyticless_stochastic_wp.jl

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
using StochasticDiffEq, DiffEqDevTools, Test
2-
using DiffEqProblemLibrary.SDEProblemLibrary: importsdeproblems;
3-
importsdeproblems();
4-
using DiffEqProblemLibrary.SDEProblemLibrary: prob_sde_additivesystem
2+
using SDEProblemLibrary: prob_sde_additivesystem
53

64
prob = prob_sde_additivesystem
75
prob = SDEProblem(prob.f, prob.g, prob.u0, (0.0, 0.1), prob.p)

test/benchmark_tests.jl

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
using OrdinaryDiffEq, DelayDiffEq, DiffEqDevTools, DiffEqBase, Test
2-
using DiffEqProblemLibrary.ODEProblemLibrary: importodeproblems;
3-
importodeproblems();
4-
using DiffEqProblemLibrary.ODEProblemLibrary: prob_ode_2Dlinear, prob_ode_linear
5-
6-
using DiffEqProblemLibrary.DDEProblemLibrary: importddeproblems;
7-
importddeproblems();
8-
using DiffEqProblemLibrary.DDEProblemLibrary: prob_dde_constant_1delay_ip
2+
using ODEProblemLibrary: prob_ode_2Dlinear, prob_ode_linear
3+
using DDEProblemLibrary: prob_dde_constant_1delay_ip
94

105
## Setup Tests
116

test/ode_appxtrue_tests.jl

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
using OrdinaryDiffEq, DiffEqBase, DiffEqDevTools, Test
2-
using DiffEqProblemLibrary.ODEProblemLibrary: importodeproblems;
3-
importodeproblems();
4-
using DiffEqProblemLibrary.ODEProblemLibrary: prob_ode_linear
2+
using ODEProblemLibrary: prob_ode_linear
53

64
f = (u, p, t) -> u
75
fun = ODEFunction(f; analytic = (u0, p, t) -> u0 * exp(t))

test/ode_tableau_convergence_tests.jl

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
using OrdinaryDiffEq, DiffEqDevTools, Test, Random
2-
using DiffEqProblemLibrary.ODEProblemLibrary: importodeproblems;
3-
importodeproblems();
4-
using DiffEqProblemLibrary.ODEProblemLibrary: prob_ode_2Dlinear, prob_ode_linear,
5-
prob_ode_bigfloatlinear,
6-
prob_ode_bigfloat2Dlinear
2+
using ODEProblemLibrary: prob_ode_2Dlinear, prob_ode_linear,
3+
prob_ode_bigfloatlinear,
4+
prob_ode_bigfloat2Dlinear
75

86
probArr = Vector{ODEProblem}(undef, 2)
97
bigprobArr = Vector{ODEProblem}(undef, 2)

0 commit comments

Comments
 (0)