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
@KevinDCarlson I was reading the tests and I don't see why this migration filters things. Shouldn't I have to assert that d == l somewhere?
#Filter impossible edges out of a mechanical linkage
M =@migration SchMechLink SchMechLink begin
V => V
E =>@joinbegin
e ::E
L ::Len
(l:e→L) ::(x->len(x)^2)
(d:e→L) ::(x->sum((pos(src(x))-pos(tgt(x))).^2))
end
Pos => Pos
Len => Len
src =>src(e)
tgt =>tgt(e)
pos => pos
len =>len(e)
end
The text was updated successfully, but these errors were encountered:
@KevinDCarlson I was reading the tests and I don't see why this migration filters things. Shouldn't I have to assert that d == l somewhere?
The text was updated successfully, but these errors were encountered: