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