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
Here is a minimal example that recreates the error:
using Catlab
using DataMigrations
@presentSchWithLabel(FreeSchema) begin
X::Ob
Label::AttrType
hasLabel::Attr(X, Label)
end@acset_typeWithLabel(SchWithLabel)
yWithLabel =yoneda(WithLabel{String})
@presentSchSplit(FreeSchema) begin
A::Ob
B::Obend@acset_typeSplit(SchSplit)
M =@migration SchSplit SchWithLabel begin
A =>@joinbegin
x::X
L::Label
(f:x → L)::hasLabel
(A:x → L)::(x -> "A")end
B =>@joinbegin
x::X
L::Label
(f:x → L)::hasLabel
(A:x → L)::(x -> "B")endend
data =@acset_colim yWithLabel begin
x::Xend
result =migrate(Split, data, M)
The ideal behavior is that result is an empty ACSet.
The text was updated successfully, but these errors were encountered:
The following MethodError is thrown when attempting to migrating an ACSet that contains AttrVar.
Here is a minimal example that recreates the error:
The ideal behavior is that
result
is an empty ACSet.The text was updated successfully, but these errors were encountered: