From 25624f907738883794c91dbe013aa9ae3e39d840 Mon Sep 17 00:00:00 2001 From: Alexander Taylor Date: Thu, 21 Nov 2024 15:42:57 -0500 Subject: Add a concepts diagram to the Workflow docs. --- docs/dev/workflows.md | 2 ++ docs/img/workflow-concepts-diagram.png | Bin 0 -> 164129 bytes 2 files changed, 2 insertions(+) create mode 100644 docs/img/workflow-concepts-diagram.png (limited to 'docs') diff --git a/docs/dev/workflows.md b/docs/dev/workflows.md index f2c4e374..db22412f 100644 --- a/docs/dev/workflows.md +++ b/docs/dev/workflows.md @@ -16,6 +16,8 @@ By leveraging Workflows, you gain unparalleled control over the decompilation an ## Concepts +![Workflow Concepts Diagram](../img/workflow-concepts-diagram.png "Workflow Concepts"){ width="800" } + ### Workflow A **Workflow** in Binary Ninja defines the set of analyses to perform on a binary, including their dependencies and execution order. Workflows are represented as Directed Acyclic Graphs (DAGs), where each node corresponds to an **Activity** (an individual analysis or action). We have built an API around modifying and extending this structure, enabling you to tailor the decompilation and analysis process to your specific needs. diff --git a/docs/img/workflow-concepts-diagram.png b/docs/img/workflow-concepts-diagram.png new file mode 100644 index 00000000..54f2451e Binary files /dev/null and b/docs/img/workflow-concepts-diagram.png differ -- cgit v1.3.1