This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| open_sauces:making_pesto [2013-10-24 09:07] – created nik | open_sauces:making_pesto [2013-10-24 09:28] (current) – nik | ||
|---|---|---|---|
| Line 3: | Line 3: | ||
| {{> | {{> | ||
| + | < | ||
| + | |||
| + | digraph G { | ||
| + | bgcolor = " | ||
| + | rankdir=" | ||
| + | subgraph ingredients { | ||
| + | graph [shape=circle]; | ||
| + | node [shape=circle]; | ||
| + | basil; | ||
| + | "pine nuts"; | ||
| + | parmesan; | ||
| + | garlic; | ||
| + | "olive oil"; | ||
| + | intA; | ||
| + | intB; | ||
| + | pesto; | ||
| + | } | ||
| + | subgraph transitions { | ||
| + | node [shape=rect]; | ||
| + | blend; | ||
| + | grate; | ||
| + | mix; | ||
| + | } | ||
| + | basil -> blend; | ||
| + | garlic -> blend; | ||
| + | "pine nuts" -> blend -> intA -> mix; | ||
| + | parmesan -> grate -> intB -> mix; | ||
| + | "olive oil" -> mix; | ||
| + | mix -> pesto [label=" | ||
| + | } | ||
| + | |||
| + | </ | ||
| + | |||
| + | NOTE: pre- and postconditions are not included above. | ||