Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add wfformat json DAG loader and DAG doc
[simgrid.git] / docs / source / tuto_dag / simple_dot.dot
diff --git a/docs/source/tuto_dag/simple_dot.dot b/docs/source/tuto_dag/simple_dot.dot
new file mode 100644 (file)
index 0000000..603409f
--- /dev/null
@@ -0,0 +1,10 @@
+digraph G {
+  c1 [size="1e9"];
+  c2 [size="5e9"];
+  c3 [size="2e9"];
+  root->c1 [size="2e8"];
+  root->c2 [size="1e8"];
+  c1->c3 [size="5e8"];
+  c2->c3 [size="-1."];
+  c3->end [size="2e8"];
+}