Skip to content
Snippets Groups Projects
Commit 5d8ab95c authored by Martin Stiemerling's avatar Martin Stiemerling :speech_balloon:
Browse files

Update 05-implementation.md

parent 4c134172
No related branches found
No related tags found
3 merge requests!90Develop,!62Resolve "Update database in order to achieve the long-term goals of the project",!53V.0.1.0 Codename Threadbare
Pipeline #51688 passed
This commit is part of merge request !53. Comments created here will be created in the context of that merge request.
...@@ -45,20 +45,22 @@ databases should be used to store the different topology graphs and their ...@@ -45,20 +45,22 @@ databases should be used to store the different topology graphs and their
pontential dependencies? How should the interface between gosdn and this pontential dependencies? How should the interface between gosdn and this
database look like? database look like?
Here is an attempt to describe the above text in a graphical reprensetation: Here is an attempt to describe the above text in a graphical reprensetation (not ready YET!):
```mermaid ```mermaid
graph TB graph TB
SubGraph1 --> SubGraph1Flow SubGraph1 --> SubGraph1Flow
subgraph "SubGraph 1 Flow" subgraph "G_logical1"
SubGraph1Flow(SubNode 1) SubGraph1Flow(SubNode 1)
SubGraph1Flow -- Choice1 --> DoChoice1 SubGraph1Flow -- Choice1 --> DoChoice1
SubGraph1Flow -- Choice2 --> DoChoice2 SubGraph1Flow -- Choice2 --> DoChoice2
end end
subgraph "Main Graph" subgraph "G_physical"
Node1[Node 1] --> Node2[Node 2] Node1[Node 1] <--> Node2[Node 2] <--> Node3[Node 3]
Node4[Node 4] <--> Node2[Node 2] <--> Node5[Node 5]
Node2 --> SubGraph1[Jump to SubGraph1] Node2 --> SubGraph1[Jump to SubGraph1]
SubGraph1 --> FinalThing[Final Thing] SubGraph1 --> FinalThing[Final Thing]
end end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment