comparison toolboxes/graph_visualisation/share/graphviz/graphs/undirected/process.gv @ 0:cc4b1211e677 tip

initial commit to HG from Changeset: 646 (e263d8a21543) added further path and more save "camirversion.m"
author Daniel Wolff
date Fri, 19 Aug 2016 13:07:06 +0200
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:cc4b1211e677
1 graph G {
2 run -- intr;
3 intr -- runbl;
4 runbl -- run;
5 run -- kernel;
6 kernel -- zombie;
7 kernel -- sleep;
8 kernel -- runmem;
9 sleep -- swap;
10 swap -- runswap;
11 runswap -- new;
12 runswap -- runmem;
13 new -- runmem;
14 sleep -- runmem;
15 }