Skip to content

Commit bffc79e

Browse files
committed
.
1 parent c5e3035 commit bffc79e

File tree

1 file changed

+23
-11
lines changed

1 file changed

+23
-11
lines changed
Lines changed: 23 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,24 @@
1-
```mermaid
2-
---
3-
title: Simple Approach to Cause and Effect Diagrams (Flowchart)
4-
---
5-
mindmap
6-
root((Problem))
7-
Cause A
8-
Cause C
9-
Cause B
10-
Cause D
11-
Cause E
1+
``` mermaid
2+
sequenceDiagram
3+
participant User
4+
participant Template
5+
participant Config Manager
6+
participant Mode
7+
participant Traversal
8+
participant Commit Path
9+
User->>Template: Runs commit_slider.py
10+
Note right of User: Passes parameters via config or CLI
11+
Template->>Config Manager: Validates parameters and generates corresponding config
12+
Note right of Template: Determines Mode and Traversal
13+
Config Manager->>Mode: Prepares config. (normalization)
14+
Note right of Config Manager: Absolutizes pathes, checks config. consistency
15+
loop MainLoop
16+
Traversal->>Mode: Slides to another commit
17+
Mode->>Traversal: Resolves current commit
18+
Traversal->>Commit Path: Populates by current commit
19+
end
20+
Note right of Commit Path: Mode appends additional info,<br>corresponding commit state and target task
21+
Commit Path->>Mode: Commit path with details about each passed commit
22+
Template-->>Mode: Representative function
23+
Mode->>User: Formatted output
1224
```

0 commit comments

Comments
 (0)