Skip to content

Commit 801e86a

Browse files
epostmarcosh
authored andcommitted
[#328] [stbx-core] Reduce intermediate data structures.
1 parent 7b23c59 commit 801e86a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

stbx-core/src/Statebox/Core/WiringTree.purs

+5-5
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ linearizeTransitionsAndNames transitions names =
4343
sortInitialFinal $ lift3 buildGluedTransition (range 0 (length transitions - 1)) transitions names
4444

4545
buildGluedTransition :: TID -> TransitionF' PID -> String -> Glued Transition
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-
(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 }
5151

5252
-- | We use this custom function instead of `sortBy` because that does not guarantee
5353
-- | the order of equal elements to be preserved.

0 commit comments

Comments
 (0)