Skip to content

Commit 98e77f7

Browse files
committed
fixes
1 parent 0108762 commit 98e77f7

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
5454
Interpolations = "a98d9a8b-a2ab-59e6-89dd-64a1c18fca59"
5555

5656
[extensions]
57-
InterpolationsExt = "Interpolations"
5857
InteractiveUtilsExt = "InteractiveUtils"
58+
InterpolationsExt = "Interpolations"
5959

6060
[compat]
6161
ApproxManifoldProducts = "0.7"

ext/InteractiveUtilsExt.jl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ module InteractiveUtilsExt
44

55
using InteractiveUtils
66
using DocStringExtensions
7+
using IncrementalInference: InferenceVariable, AbstractPrior, AbstractRelativeMinimize, AbstractManifoldMinimize
8+
# using IncrementalInference: getCurrentWorkspaceFactors, getCurrentWorkspaceVariables, listTypeTree
9+
import IncrementalInference: getCurrentWorkspaceFactors, getCurrentWorkspaceVariables, listTypeTree
710

811
export getCurrentWorkspaceFactors, getCurrentWorkspaceVariables
912
export listTypeTree
@@ -27,7 +30,7 @@ end
2730
Return all variables currently registered in the workspace.
2831
"""
2932
function getCurrentWorkspaceVariables()
30-
return InteractiveUtils.subtypes(IIF.InferenceVariable)
33+
return InteractiveUtils.subtypes(InferenceVariable)
3134
end
3235

3336
function _listTypeTree(mytype, printlevel::Int)

src/IncrementalInference.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,7 @@ include("services/SolverAPI.jl")
234234
# Symbolic tree analysis files.
235235
include("services/AnalysisTools.jl")
236236

237+
include("../ext/WeakDepsPrototypes.jl")
237238

238239
# deprecation legacy support
239240
include("Deprecated.jl")

0 commit comments

Comments
 (0)