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
([] /\ _ ) ->Initial { name: name, path: [0, 0, 0], transition: tId, tokens: buildTokens pre post } -- the path is [0, 0, 0] because we consider a trivial diagram to be there
49
-
(_ /\ []) ->Final { name: name, path: [0, 0, 0], transition: tId, tokens: buildTokens pre post }
50
-
(inp /\ out) ->Untouched { name: name, path: [0, 0, 0], transition: tId, tokens: buildTokens pre post }
46
+
buildGluedTransition tid (pre /\ post) name =
47
+
case pre, post of
48
+
[], _ ->Initial { name: name, path: [0, 0, 0], transition: tid, tokens: buildTokens pre post } -- the path is [0, 0, 0] because we consider a trivial diagram to be there
49
+
_ , []->Final { name: name, path: [0, 0, 0], transition: tid, tokens: buildTokens pre post }
50
+
_ , _ ->Untouched { name: name, path: [0, 0, 0], transition: tid, tokens: buildTokens pre post }
51
51
52
52
-- | We use this custom function instead of `sortBy` because that does not guarantee
0 commit comments