File tree Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -3,23 +3,28 @@ __precompile__(true)
3
3
module DiffEqProblemLibrary
4
4
5
5
module ODEProblemLibrary
6
- importodeproblems () = include (joinpath (@__DIR__ , " ode/ode_premade_problems.jl" ))
6
+ importodeproblems () =
7
+ @isdefined (prob_ode_linear) || include (joinpath (@__DIR__ , " ode/ode_premade_problems.jl" ))
7
8
end # module
8
9
9
10
module DAEProblemLibrary
10
- importdaeproblems () = include (joinpath (@__DIR__ , " dae_premade_problems.jl" ))
11
+ importdaeproblems () =
12
+ @isdefined (prob_dae_resrob) || include (joinpath (@__DIR__ , " dae_premade_problems.jl" ))
11
13
end # module
12
14
13
15
module DDEProblemLibrary
14
- importddeproblems () = include (joinpath (@__DIR__ , " dde_premade_problems.jl" ))
16
+ importddeproblems () =
17
+ @isdefined (prob_dde_1delay) || include (joinpath (@__DIR__ , " dde_premade_problems.jl" ))
15
18
end # module
16
19
17
20
module SDEProblemLibrary
18
- importsdeproblems () = include (joinpath (@__DIR__ , " sde_premade_problems.jl" ))
21
+ importsdeproblems () =
22
+ @isdefined (prob_sde_wave) || include (joinpath (@__DIR__ , " sde_premade_problems.jl" ))
19
23
end # module
20
24
21
25
module JumpProblemLibrary
22
- importjumpproblems () = include (joinpath (@__DIR__ , " jump_premade_problems.jl" ))
26
+ importjumpproblems () =
27
+ @isdefined (prob_jump_dnarepressor) || include (joinpath (@__DIR__ , " jump_premade_problems.jl" ))
23
28
end # module
24
29
25
30
end # module
You can’t perform that action at this time.
0 commit comments