Skip to content

Commit ece0e56

Browse files
authored
remove full dependency from DifferentialEquations in examples and replace by subpackages that contain the needed solver to reduce testing times, solves issue #14 (#27)
1 parent 2a536f9 commit ece0e56

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

examples/Example103_BurgersEquation.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ module Example103_BurgersEquation
2323

2424
using ExtendableFEM
2525
using ExtendableGrids
26-
using DifferentialEquations
26+
using OrdinaryDiffEqRosenbrock
2727
using Test #hide
2828

2929
## nonlinear kernel, i.e. f(u)

examples/Example106_NonlinearDiffusion.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ module Example106_NonlinearDiffusion
2222

2323
using ExtendableFEM
2424
using ExtendableGrids
25-
using DifferentialEquations
25+
using OrdinaryDiffEqSDIRK
2626
using GridVisualize
2727
using Test #hide
2828

examples/Example205_HeatEquation.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ module Example205_HeatEquation
2222

2323
using ExtendableFEM
2424
using ExtendableGrids
25-
using DifferentialEquations
25+
using OrdinaryDiffEqSDIRK
2626
using Test #hide
2727

2828
## initial state u at time t0

examples/Example284_LevelSetMethod.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ using ExtendableFEM
2626
using ExtendableGrids
2727
using GridVisualize
2828
using LinearAlgebra
29-
using DifferentialEquations
29+
using OrdinaryDiffEqSDIRK
3030

3131
function ϕ_init!(result, qpinfo)
3232
x = qpinfo.x

examples/Example290_PoroElasticity.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ module Example290_PoroElasticity
3535

3636
using ExtendableFEM
3737
using ExtendableGrids
38-
using DifferentialEquations
3938
using GridVisualize
4039
using Symbolics
4140
using Test #hide

test/Project.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
[deps]
22
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
3-
DifferentialEquations = "0c46a032-eb83-5123-abaf-570d42b7fbaa"
43
ExampleJuggler = "3bbe58f8-ed81-4c4e-a134-03e85fcf4a1a"
4+
ExplicitImports = "7d51a73a-1435-4ff3-83d9-f097790105c7"
55
ExtendableFEMBase = "12fb9182-3d4c-4424-8fd1-727a0899810c"
66
ExtendableGrids = "cfc395e8-590f-11e8-1f13-43a2532b2fa8"
77
ExtendableSparse = "95c220a8-a1cf-11e9-0c77-dbfce5f500b3"
8-
ExplicitImports = "7d51a73a-1435-4ff3-83d9-f097790105c7"
98
GridVisualize = "5eed8a63-0fb0-45eb-886d-8d5a387d12b8"
109
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1110
LinearSolve = "7ed4a6bd-45f5-4d41-b270-4a48e9bafcae"
1211
Metis = "2679e427-3c69-5b7f-982b-ece356f1e94b"
12+
OrdinaryDiffEqRosenbrock = "43230ef6-c299-4910-a778-202eb28ce4ce"
13+
OrdinaryDiffEqSDIRK = "2d112036-d095-4a1e-ab9a-08536f3ecdbf"
1314
SimplexGridFactory = "57bfcd06-606e-45d6-baf4-4ba06da0efd5"
1415
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
1516
Symbolics = "0c5d862f-8b57-4792-8d23-62f2024744c7"

0 commit comments

Comments
 (0)