@@ -29,7 +29,7 @@ There are 3 segments to Big Tree consisting of Tree, Binary Tree, and Directed A
2929
3030For ** Tree** implementation, there are 9 main components.
3131
32- 1 . [ ** 🌺 Node** ] ( https://bigtree.readthedocs.io/en/stable/bigtree/node/ )
32+ 1 . [ ** 🌺 Node** ] ( https://bigtree.readthedocs.io/en/stable/bigtree/node/node )
3333 1 . `` BaseNode `` , extendable class
3434 2 . `` Node `` , BaseNode with node name attribute
35352 . [ ** ✨ Constructing Tree** ] ( https://bigtree.readthedocs.io/en/stable/bigtree/tree/construct/ )
@@ -73,15 +73,15 @@ For **Tree** implementation, there are 9 main components.
7373 3 . Export tree to * dot* (can save to .dot, .png, .svg, .jpeg files)
7474 4 . Export tree to * Pillow* (can save to .png, .jpg)
7575 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 )
7777 1 . Sample workflows for tree demonstration!
7878
7979--------
8080
8181For ** Binary Tree** implementation, there are 3 main components.
8282Binary Node inherits from Node, so the components in Tree implementation are also available in Binary Tree.
8383
84- 1 . [ ** 🌿 Node** ] ( https://bigtree.readthedocs.io/en/stable/bigtree/node/ )
84+ 1 . [ ** 🌿 Node** ] ( https://bigtree.readthedocs.io/en/stable/bigtree/node/binarynode )
8585 1 . `` BinaryNode `` , Node with binary tree rules
86862 . [ ** ✨ Constructing Binary Tree** ] ( https://bigtree.readthedocs.io/en/stable/bigtree/binarytree/construct/ )
8787 1 . From * list* , using flattened list structure
@@ -92,7 +92,7 @@ Binary Node inherits from Node, so the components in Tree implementation are als
9292
9393For ** Directed Acyclic Graph (DAG)** implementation, there are 4 main components.
9494
95- 1 . [ ** 🌼 Node** ] ( https://bigtree.readthedocs.io/en/stable/bigtree/node/ )
95+ 1 . [ ** 🌼 Node** ] ( https://bigtree.readthedocs.io/en/stable/bigtree/node/dagnode )
9696 1 . `` DAGNode `` , extendable class for constructing Directed Acyclic Graph (DAG)
97972 . [ ** ✨ Constructing DAG** ] ( https://bigtree.readthedocs.io/en/stable/bigtree/dag/construct/ )
9898 1 . From * list* , containing parent-child tuples
0 commit comments