Skip to content

Commit baa5835

Browse files
committed
fix bug
1 parent 04c492f commit baa5835

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ExplicitDiscreteMarginalizations.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,11 +230,11 @@ function assembleHypothesesElements!(mh::Nothing,
230230
if i == 0
231231
# elements that occur during nullhypo active
232232
push!(allelements, nullarr)
233-
push!(activehypo, (i,sfidx))
233+
push!(activehypo, (i,[sfidx;]))
234234
elseif i == 1
235235
# elements that occur during regular hypothesis true
236236
push!(allelements, reguarr)
237-
push!(activehypo, (i,certainidx))
237+
push!(activehypo, (i,[certainidx;]))
238238
else
239239
# all remaining collections are empty (part of multihypo support)
240240
push!(allelements, Int[])

0 commit comments

Comments
 (0)