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)
33module DiffEqProblemLibrary
44
55module 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" ))
78end # module
89
910module DAEProblemLibrary
10- importdaeproblems () = include (joinpath (@__DIR__ , " dae_premade_problems.jl" ))
11+ importdaeproblems () =
12+ @isdefined (prob_dae_resrob) || include (joinpath (@__DIR__ , " dae_premade_problems.jl" ))
1113end # module
1214
1315module DDEProblemLibrary
14- importddeproblems () = include (joinpath (@__DIR__ , " dde_premade_problems.jl" ))
16+ importddeproblems () =
17+ @isdefined (prob_dde_1delay) || include (joinpath (@__DIR__ , " dde_premade_problems.jl" ))
1518end # module
1619
1720module SDEProblemLibrary
18- importsdeproblems () = include (joinpath (@__DIR__ , " sde_premade_problems.jl" ))
21+ importsdeproblems () =
22+ @isdefined (prob_sde_wave) || include (joinpath (@__DIR__ , " sde_premade_problems.jl" ))
1923end # module
2024
2125module JumpProblemLibrary
22- importjumpproblems () = include (joinpath (@__DIR__ , " jump_premade_problems.jl" ))
26+ importjumpproblems () =
27+ @isdefined (prob_jump_dnarepressor) || include (joinpath (@__DIR__ , " jump_premade_problems.jl" ))
2328end # module
2429
2530end # module
You can’t perform that action at this time.
0 commit comments