Skip to content

Commit 98809f3

Browse files
committed
Drop loading triggered by DifferentialEquations, use DiffEqBase
modified: Project.toml modified: src/MechGluecode.jl
1 parent ad90f3e commit 98809f3

File tree

2 files changed

+7
-14
lines changed

2 files changed

+7
-14
lines changed

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
name = "MechGluecode"
22
uuid = "3017d99d-ab52-4519-99a2-fa9ddc4637fe"
33
authors = ["hustf <[email protected]> and contributors"]
4-
version = "0.1.51"
4+
version = "0.1.52"
55

66
[deps]
77
DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e"
8-
DifferentialEquations = "0c46a032-eb83-5123-abaf-570d42b7fbaa"
98
MechGlueDiffEqBase = "2532746b-52b5-4539-9431-8bb183ab067f"
109
MechGlueInterpolations = "a2cecc3b-2043-4d36-9615-d8139ca22695"
1110
MechGlueModelingToolkit = "83168081-0482-427f-a8e5-e3977330cfc7"
@@ -23,6 +22,7 @@ Unitfu = "5ee08b94-2369-4f4a-b8c7-99333ba35fb0"
2322
julia = "1"
2423

2524
[extras]
25+
DifferentialEquations = "0c46a032-eb83-5123-abaf-570d42b7fbaa"
2626
SnoopCompile = "aa65fe97-06da-5843-b5b1-d5d13cad87d2"
2727
SnoopCompileCore = "e2b509da-e806-4183-be48-004708413034"
2828
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

src/MechGluecode.jl

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,28 +9,21 @@ function __init__()
99
@eval using MechGluePlots
1010
end
1111
@require Interpolations = "a98d9a8b-a2ab-59e6-89dd-64a1c18fca59" begin
12-
#@info "Interpolations => using MechGlueInterpolations"
13-
#@eval using MechGlueInterpolations
12+
@info "Interpolations => using MechGlueInterpolations"
13+
@eval using MechGlueInterpolations
1414
end
15-
1615
@require ModelingToolkit = "961ee093-0014-501f-94e3-6117800e7a78" begin
1716
#@info "ModelingToolkit => using MechGlueModelingToolkit"
1817
#@eval using MechGlueModelingToolkit
1918
end
20-
2119
@require RecursiveArrayTools = "731186ca-8d62-57ce-b412-fbd966d074cd" begin
22-
@info "RecursiveArrayTools => using MechGlueRecursiveArrayTools"
20+
# @info "RecursiveArrayTools => using MechGlueRecursiveArrayTools"
2321
# @eval using MechGlueDiffEqBase
2422
# @info "RecursiveArrayTools => using MechGlueRecursiveArrayTools"
2523
# @eval using MechGlueRecursiveArrayTools
2624
end
27-
@require DifferentialEquations = "0c46a032-eb83-5123-abaf-570d42b7fbaa" begin
28-
@info "DifferentialEquations => using MechGlueDiffEqBase"
29-
# @eval import MechanicalUnits: Unitfu, @import_expand
30-
# @eval import Unitfu: AbstractQuantity
31-
# @eval import DifferentialEquations
32-
# @eval import DifferentialEquations: DiffEqBase
33-
# @eval import SciMLBase
25+
@require DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e" begin
26+
@info "DiffEqBase => using MechGlueDiffEqBase"
3427
@eval using MechGlueDiffEqBase
3528
end
3629
end

0 commit comments

Comments
 (0)