File tree Expand file tree Collapse file tree 1 file changed +23
-11
lines changed
Expand file tree Collapse file tree 1 file changed +23
-11
lines changed Original file line number Diff line number Diff line change 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```
You can’t perform that action at this time.
0 commit comments