Skip to content

Commit f17921c

Browse files
committed
fix missing export
1 parent 1bbaaf8 commit f17921c

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

ext/DiffEqFactorExt.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ function _solveFactorODE!(measArr, prob, u0pts, Xtra...)
111111
return sol
112112
end
113113

114-
getSample(cf::CalcFactor{<:DERelative}) = error("getSample(::CalcFactor{<:DERelative}) not implemented yet")
114+
getSample(cf::CalcFactor{<:DERelative}) = error("getSample(::CalcFactor{<:DERelative}) must still be implemented in new IIF design")
115115

116116
# FIXME see #1025, `multihypo=` will not work properly yet
117117
function sampleFactor(cf::CalcFactor{<:DERelative}, N::Int = 1)

ext/FluxFactorsExt.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ using Random, Statistics
1919
import Random: rand
2020

2121
using IncrementalInference
22-
import IncrementalInference: samplePoint, sampleTangent
22+
import IncrementalInference: samplePoint, sampleTangent, MixtureFluxModels, getSample
2323

2424
# the factor definitions
2525
# export FluxModelsDistribution

ext/WeakDepsPrototypes.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11

2+
# Flux.jl
3+
function MixtureFluxModels end
24

35
# InteractiveUtils.jl
46
function getCurrentWorkspaceFactors end

src/ExportAPI.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -368,6 +368,7 @@ export DERelative
368368

369369
# weakdeps on Flux.jl
370370
export FluxModelsDistribution, PackedFluxModelsDistribution
371+
export MixtureFluxModels
371372

372373
# weakdeps on InteractiveUtils.jl
373374
export getCurrentWorkspaceFactors, getCurrentWorkspaceVariables

0 commit comments

Comments
 (0)