Serializing edges #97
Closed
ss2165
started this conversation in
Specification
Replies: 3 comments 3 replies
-
Yes that should work. Definitely better than the current solution 👍 I'm wondering if we also have to discriminate between order- and const-edges in the serialised format? Or can the correct one always be inferred from the context? |
Beta Was this translation helpful? Give feedback.
3 replies
-
I think this change to the spec was merged in #108. Should we I open the implementation issue, or are there still things to discuss? |
Beta Was this translation helpful? Give feedback.
0 replies
-
Moved to implementation #133 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In the serialization spec currently all edges are defined as pairs of (node, port). However in the main spec ports are only used for input/const_input/output
I propose instead to move to pairs of (node, Option[port]) such that control flow edges can be expressed as ((node, port), (node, null)) and order edges as ((node, null), (node, null)).
@mark-koch does that work for guppy?
Beta Was this translation helpful? Give feedback.
All reactions