top | item 6142385

(no title)

bockris | 12 years ago

I'm not sure I understand your syntax. Graphs are typically specified as relationships (edges) between nodes.

  a->b
  b->c
  d->c

  { name: "a", inputs : {}, outputs {"b"} }
  { name: "b", inputs : {"a"}, outputs {"c"} }
  { name: "c", inputs : {"b","d"}, outputs {} }
  { name: "d", inputs : {}, outputs {"c"} }
???

discuss

order