Skip to content

Commit 76065be

Browse files
committed
Remove at eval
1 parent c9a84f5 commit 76065be

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/DiffEqProblemLibrary.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,23 @@ __precompile__(true)
33
module DiffEqProblemLibrary
44

55
module ODEProblemLibrary
6-
importodeproblems() = @eval include(joinpath(@__DIR__, "ode/ode_premade_problems.jl"))
6+
importodeproblems() = include(joinpath(@__DIR__, "ode/ode_premade_problems.jl"))
77
end # module
88

99
module DAEProblemLibrary
10-
importdaeproblems() = @eval include(joinpath(@__DIR__, "dae_premade_problems.jl"))
10+
importdaeproblems() = include(joinpath(@__DIR__, "dae_premade_problems.jl"))
1111
end # module
1212

1313
module DDEProblemLibrary
14-
importddeproblems() = @eval include(joinpath(@__DIR__, "dde_premade_problems.jl"))
14+
importddeproblems() = include(joinpath(@__DIR__, "dde_premade_problems.jl"))
1515
end # module
1616

1717
module SDEProblemLibrary
18-
importsdeproblems() = @eval include(joinpath(@__DIR__, "sde_premade_problems.jl"))
18+
importsdeproblems() = include(joinpath(@__DIR__, "sde_premade_problems.jl"))
1919
end # module
2020

2121
module JumpProblemLibrary
22-
importjumpproblems() = @eval include(joinpath(@__DIR__, "jump_premade_problems.jl"))
22+
importjumpproblems() = include(joinpath(@__DIR__, "jump_premade_problems.jl"))
2323
end # module
2424

2525
end # module

0 commit comments

Comments
 (0)