@@ -29,7 +29,7 @@ There are 3 segments to Big Tree consisting of Tree, Binary Tree, and Directed A
29
29
30
30
For ** Tree** implementation, there are 9 main components.
31
31
32
- 1 . [ ** 🌺 Node** ] ( https://bigtree.readthedocs.io/en/stable/bigtree/node/ )
32
+ 1 . [ ** 🌺 Node** ] ( https://bigtree.readthedocs.io/en/stable/bigtree/node/node )
33
33
1 . `` BaseNode `` , extendable class
34
34
2 . `` Node `` , BaseNode with node name attribute
35
35
2 . [ ** ✨ Constructing Tree** ] ( https://bigtree.readthedocs.io/en/stable/bigtree/tree/construct/ )
@@ -73,15 +73,15 @@ For **Tree** implementation, there are 9 main components.
73
73
3 . Export tree to * dot* (can save to .dot, .png, .svg, .jpeg files)
74
74
4 . Export tree to * Pillow* (can save to .png, .jpg)
75
75
5 . Export tree to * Mermaid Flowchart* (can display on .md)
76
- 9 . [ ** ✔️ Workflows** ] ( https://bigtree.readthedocs.io/en/stable/demo/workflow/ )
76
+ 9 . [ ** ✔️ Workflows** ] ( https://bigtree.readthedocs.io/en/stable/bigtree/workflows/app_todo )
77
77
1 . Sample workflows for tree demonstration!
78
78
79
79
--------
80
80
81
81
For ** Binary Tree** implementation, there are 3 main components.
82
82
Binary Node inherits from Node, so the components in Tree implementation are also available in Binary Tree.
83
83
84
- 1 . [ ** 🌿 Node** ] ( https://bigtree.readthedocs.io/en/stable/bigtree/node/ )
84
+ 1 . [ ** 🌿 Node** ] ( https://bigtree.readthedocs.io/en/stable/bigtree/node/binarynode )
85
85
1 . `` BinaryNode `` , Node with binary tree rules
86
86
2 . [ ** ✨ Constructing Binary Tree** ] ( https://bigtree.readthedocs.io/en/stable/bigtree/binarytree/construct/ )
87
87
1 . From * list* , using flattened list structure
@@ -92,7 +92,7 @@ Binary Node inherits from Node, so the components in Tree implementation are als
92
92
93
93
For ** Directed Acyclic Graph (DAG)** implementation, there are 4 main components.
94
94
95
- 1 . [ ** 🌼 Node** ] ( https://bigtree.readthedocs.io/en/stable/bigtree/node/ )
95
+ 1 . [ ** 🌼 Node** ] ( https://bigtree.readthedocs.io/en/stable/bigtree/node/dagnode )
96
96
1 . `` DAGNode `` , extendable class for constructing Directed Acyclic Graph (DAG)
97
97
2 . [ ** ✨ Constructing DAG** ] ( https://bigtree.readthedocs.io/en/stable/bigtree/dag/construct/ )
98
98
1 . From * list* , containing parent-child tuples
0 commit comments