Benutzer:Andreas Plank/Sandkasten2: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
| Zeile 14: | Zeile 14: | ||
digraph duiaern2 { | digraph duiaern2 { | ||
OCV -> open; | OCV -> open; | ||
| + | } | ||
| + | </graphviz> | ||
| + | <graphviz renderer='circo' caption='Hello Neato'> | ||
| + | graph example25 { | ||
| + | run -- intr; | ||
| + | intr -- runbl; | ||
| + | runbl -- run; | ||
| + | run -- kernel; | ||
| + | kernel -- zombie; | ||
| + | kernel -- sleep; | ||
| + | kernel -- runmem; | ||
| + | sleep -- swap; | ||
| + | swap -- runswap; | ||
| + | runswap -- new; | ||
| + | runswap -- runmem; | ||
| + | new -- runmem; | ||
| + | sleep -- runmem; | ||
} | } | ||
</graphviz> | </graphviz> | ||
Version vom 23. August 2018, 09:01 Uhr
<graphviz renderer="neato" > digraph duiaern {
node [style="rounded,filled,bold", shape=box, fixedsize=true, width=1.3, fontname="Arial"]; OCV[label="OSE Core\nValues"]; open[label="Open"]; socialJustice[label="Social\nJustice"] coop[label="Cooperation"]; OCV -> open; OCV -> socialJustice; OCV -> coop;
} </graphviz> <graphviz renderer="neato" > digraph duiaern2 {
OCV -> open;
} </graphviz> <graphviz renderer='circo' caption='Hello Neato'> graph example25 {
run -- intr; intr -- runbl; runbl -- run; run -- kernel; kernel -- zombie; kernel -- sleep; kernel -- runmem; sleep -- swap; swap -- runswap; runswap -- new; runswap -- runmem; new -- runmem; sleep -- runmem;
} </graphviz>