Skip to content

Commit

Permalink
Drop loading triggered by DifferentialEquations, use DiffEqBase
Browse files Browse the repository at this point in the history
modified:   Project.toml
modified:   src/MechGluecode.jl
  • Loading branch information
hustf committed Jul 2, 2021
1 parent ad90f3e commit 98809f3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 14 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
name = "MechGluecode"
uuid = "3017d99d-ab52-4519-99a2-fa9ddc4637fe"
authors = ["hustf <[email protected]> and contributors"]
version = "0.1.51"
version = "0.1.52"

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

[extras]
DifferentialEquations = "0c46a032-eb83-5123-abaf-570d42b7fbaa"
SnoopCompile = "aa65fe97-06da-5843-b5b1-d5d13cad87d2"
SnoopCompileCore = "e2b509da-e806-4183-be48-004708413034"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Expand Down
17 changes: 5 additions & 12 deletions src/MechGluecode.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,28 +9,21 @@ function __init__()
@eval using MechGluePlots
end
@require Interpolations = "a98d9a8b-a2ab-59e6-89dd-64a1c18fca59" begin
#@info "Interpolations => using MechGlueInterpolations"
#@eval using MechGlueInterpolations
@info "Interpolations => using MechGlueInterpolations"
@eval using MechGlueInterpolations
end

@require ModelingToolkit = "961ee093-0014-501f-94e3-6117800e7a78" begin
#@info "ModelingToolkit => using MechGlueModelingToolkit"
#@eval using MechGlueModelingToolkit
end

@require RecursiveArrayTools = "731186ca-8d62-57ce-b412-fbd966d074cd" begin
@info "RecursiveArrayTools => using MechGlueRecursiveArrayTools"
# @info "RecursiveArrayTools => using MechGlueRecursiveArrayTools"
# @eval using MechGlueDiffEqBase
# @info "RecursiveArrayTools => using MechGlueRecursiveArrayTools"
# @eval using MechGlueRecursiveArrayTools
end
@require DifferentialEquations = "0c46a032-eb83-5123-abaf-570d42b7fbaa" begin
@info "DifferentialEquations => using MechGlueDiffEqBase"
# @eval import MechanicalUnits: Unitfu, @import_expand
# @eval import Unitfu: AbstractQuantity
# @eval import DifferentialEquations
# @eval import DifferentialEquations: DiffEqBase
# @eval import SciMLBase
@require DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e" begin
@info "DiffEqBase => using MechGlueDiffEqBase"
@eval using MechGlueDiffEqBase
end
end
Expand Down

0 comments on commit 98809f3

Please sign in to comment.