7 thoughts on “Node Design Patterns

  1. Brad J Murray

    Not sure how versed you are in graph theory, but these might be even more interesting by declaring directionality or lack of it. For example, all of the three-node graphs are described implying directionality. Lacking directionality (or with bi-directional arcs) fork and funnel are identical.

    Directionality is an extra axis of information that explodes the utility of the graph.

    Reply
    1. Rob Donoghue Post author

      Heh. That is exactly the part that I left out because it turned into its own thing. Directionality (and entry point) are super power tools!

      Reply
  2. Axel Cholewa

    The equality in the second five node graph is incorrect. It must be

    o-o-o
    | /
    o-o

    not

    o-o-o
    | | /
    o-o

    🙂

    Reply

Leave a Reply to Brad J Murray Cancel reply

Your email address will not be published. Required fields are marked *