aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Staessens <dimitri@ouroboros.rocks>2019-07-23 11:11:28 +0200
committerDimitri Staessens <dimitri@ouroboros.rocks>2019-07-23 11:12:28 +0200
commitb2ac5d5165784277a4cec881022162f4e4e29bf9 (patch)
tree3458b89d0e49983ee3a81488da2b9ded7d1b0730
parent94ebb032bb545a7b9f9eed8cd0caa5e1697c13e0 (diff)
downloadwebsite-b2ac5d5165784277a4cec881022162f4e4e29bf9.tar.gz
website-b2ac5d5165784277a4cec881022162f4e4e29bf9.zip
content: Add dependency graph figure to elements
-rw-r--r--content/docs/elements.md17
-rw-r--r--static/images/dependencies.jpgbin0 -> 12970 bytes
2 files changed, 12 insertions, 5 deletions
diff --git a/content/docs/elements.md b/content/docs/elements.md
index 152c07f..e84bcfc 100644
--- a/content/docs/elements.md
+++ b/content/docs/elements.md
@@ -79,13 +79,20 @@ IPCPs: __F3__ --> __C2__ --> __C1__ --> __F1__ --> __D2__ --> __A1__
--> __A2__ --> __D1__ --> __B1__ --> __B2__ --> __D3__ --> __F2__ -->
__E1__ --> __E2__ --> __F4__.
+<center> {{<figure class="w-200" src="/images/dependencies.jpg">}} </center>
+
A recursive network has __dependencies__ between layers in the
-network, and between IPCPs in a __system__. To avoid problems, these
-dependencies should never contain cycles (so a layer I should not
-directly or indirectly depend on itself). The rank of a layer is
-defined as the maximum depth of the (directed acyclic) dependency graph.
+network, and between IPCPs in a __system__. These dependencies can be
+represented as a directed acyclic graph (DAG). To avoid problems,
+these dependencies should never contain cycles (so a layer I should
+not directly or indirectly depend on itself). The rank of a layer is
+defined (either locally or globally) as the maximum depth of this
+layer in the DAG.
+
+[Next: Creating layers](/docs/irmd/)
---
Changelog:
-2019 07 11: Initial version.
+2019 07 11: Initial version.<br>
+2019 07 23: Added dependency graph figure
diff --git a/static/images/dependencies.jpg b/static/images/dependencies.jpg
new file mode 100644
index 0000000..eaa9e79
--- /dev/null
+++ b/static/images/dependencies.jpg
Binary files differ