You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The correct way it seems will be to check has_edge(adjmatgraph, Edge(i,n)) or has_edge(adjmatgraph, Edge(n,i)) and use the appropriate bwd_messages then:
for n in nbrs
ifhas_edge(tree.coordination_stats.adjmatgraph, Edge(i,n))
e =Edge(i, n)
elseifhas_edge(tree.coordination_stats.adjmatgraph, Edge(n,i))
e =Edge(n, i)
end
q_values[i,:] += bwd_messages[findfirst(isequal(e), edgelist), :]
end
FactoredValueMCTS.jl/src/fvmcts/action_coordination/maxplus.jl
Lines 191 to 207 in 26f7aa6
Thanks @freemin7 for bringing this to our attention on slack.
The text was updated successfully, but these errors were encountered: