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)
33module DiffEqProblemLibrary
44
55module ODEProblemLibrary
6- importodeproblems () = @eval include (joinpath (@__DIR__ , " ode/ode_premade_problems.jl" ))
6+ importodeproblems () = include (joinpath (@__DIR__ , " ode/ode_premade_problems.jl" ))
77end # module
88
99module DAEProblemLibrary
10- importdaeproblems () = @eval include (joinpath (@__DIR__ , " dae_premade_problems.jl" ))
10+ importdaeproblems () = include (joinpath (@__DIR__ , " dae_premade_problems.jl" ))
1111end # module
1212
1313module DDEProblemLibrary
14- importddeproblems () = @eval include (joinpath (@__DIR__ , " dde_premade_problems.jl" ))
14+ importddeproblems () = include (joinpath (@__DIR__ , " dde_premade_problems.jl" ))
1515end # module
1616
1717module SDEProblemLibrary
18- importsdeproblems () = @eval include (joinpath (@__DIR__ , " sde_premade_problems.jl" ))
18+ importsdeproblems () = include (joinpath (@__DIR__ , " sde_premade_problems.jl" ))
1919end # module
2020
2121module JumpProblemLibrary
22- importjumpproblems () = @eval include (joinpath (@__DIR__ , " jump_premade_problems.jl" ))
22+ importjumpproblems () = include (joinpath (@__DIR__ , " jump_premade_problems.jl" ))
2323end # module
2424
2525end # module
You can’t perform that action at this time.
0 commit comments