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
-
_ , _ ->Untouched { name: name, path: [0, 0, 0], transition: tid, tokens: buildTokens pre post }
48
+
[], _ ->Initial gluedTransition
49
+
_ , []->Final gluedTransition
50
+
_ , _ ->Untouched gluedTransition
51
+
where
52
+
gluedTransition = { name, path, transition: tid, tokens: buildTokens pre post }
53
+
path = [netIndex, diagramIndex, 0] -- path to trivial diagram that is assumed to exist
54
+
diagramIndex = 0
55
+
netIndex = 0
51
56
52
57
-- | We use this custom function instead of `sortBy` because that does not guarantee
0 commit comments