File tree Expand file tree Collapse file tree 4 files changed +15
-6
lines changed Expand file tree Collapse file tree 4 files changed +15
-6
lines changed Original file line number Diff line number Diff line change @@ -50,10 +50,12 @@ TimeZones = "f269a46b-ccf7-5d73-abea-4c690281aa53"
50
50
UUIDs = " cf7118a7-6976-5b1a-9a39-7adc72f591a4"
51
51
52
52
[weakdeps ]
53
+ InteractiveUtils = " b77e0a4c-d291-57a0-90e8-8db25a27a240"
53
54
Interpolations = " a98d9a8b-a2ab-59e6-89dd-64a1c18fca59"
54
55
55
56
[extensions ]
56
57
InterpolationsExt = " Interpolations"
58
+ InteractiveUtilsExt = " InteractiveUtils"
57
59
58
60
[compat ]
59
61
ApproxManifoldProducts = " 0.7"
@@ -95,7 +97,6 @@ julia = "1.8"
95
97
DifferentialEquations = " 0c46a032-eb83-5123-abaf-570d42b7fbaa"
96
98
Flux = " 587475ba-b771-5e3f-ad9e-33799f191a9c"
97
99
Graphs = " 86223c79-3864-5bf0-83f7-82e725a168b6"
98
- InteractiveUtils = " b77e0a4c-d291-57a0-90e8-8db25a27a240"
99
100
LineSearches = " d3d80556-e9d4-5f37-9878-2ab0fcc64255"
100
101
Manopt = " 0fc0a36d-df90-57f3-8f93-d78a9fc72bb5"
101
102
Pkg = " 44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
Original file line number Diff line number Diff line change
1
+ module InteractiveUtilsExt
1
2
2
- @info " IncrementalInference.jl is loading tools related to InteractiveUtils.jl."
3
+ @info " IncrementalInference.jl is loading extension related to InteractiveUtils.jl."
3
4
4
- # this requires InteractiveUtils
5
+ using InteractiveUtils
6
+ using DocStringExtensions
5
7
6
8
export getCurrentWorkspaceFactors, getCurrentWorkspaceVariables
7
9
export listTypeTree
@@ -50,3 +52,5 @@ function listTypeTree(T)
50
52
println (T)
51
53
return _listTypeTree (T, 0 )
52
54
end
55
+
56
+ end # module
Original file line number Diff line number Diff line change 1
1
2
+ # InteractiveUtils.jl
3
+ function getCurrentWorkspaceFactors end
4
+ function getCurrentWorkspaceVariables end
5
+ function listTypeTree end
Original file line number Diff line number Diff line change @@ -240,9 +240,9 @@ include("Deprecated.jl")
240
240
241
241
exportimg (pl) = error (" Please do `using Gadfly` to allow image export." )
242
242
function __init__ ()
243
- @require InteractiveUtils = " b77e0a4c-d291-57a0-90e8-8db25a27a240" include (
244
- " services/RequireInteractiveUtils.jl" ,
245
- )
243
+ # @require InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240" include(
244
+ # "services/RequireInteractiveUtils.jl",
245
+ # )
246
246
@require Gadfly = " c91e804a-d5a3-530f-b6f0-dfbca275c004" include (
247
247
" services/EmbeddedPlottingUtils.jl" ,
248
248
)
You can’t perform that action at this time.
0 commit comments