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
@slwu89 has found a bug in the coproduct dispatch:
X =@acset LabeledSet{Symbol} begin
X=4
label=[:a,:b,:c,:d]
end
Y =@acset LabeledSet{Int} begin
X=3
label=1:3end
g = (Label=FinFunction(Dict([l=>l for l in X[:,:label]])),)
h = (Label=FinFunction(Dict([l=>Symbol(l) for l in Y[:,:label]])),)
coproduct(X,Y, type_components=[g,h])
Dispatch is not working, as it should eventually turn into the following (which does work, if you directly type it in):
I'd guess it would be hard to straightforwardly infer the LabeledSet{Symbol} argument from the input data, so I'm not sure if there's a good solution to this problem, but at least there could be a better error message.
@slwu89 has found a bug in the
coproduct
dispatch:Dispatch is not working, as it should eventually turn into the following (which does work, if you directly type it in):
The text was updated successfully, but these errors were encountered: