Graph Engine#
This guide provides comprehensive documentation for the Graph Engine Module in EvoFabric.
A complete graph engine mainly consists of the following three parts:
State declaration: declares the type of state variables and the update mechanism passed in the diagram.
Node, is the smallest unit for processing tasks in a graph, the input of the node is the state, the output is the state increment.
Edge, edge helps nodes pass the state to the next node, supports conditional judgment, state filtering, grouping, and other features.
Next, the functional characteristics and usage of state declaration, adding nodes, adding edges, and visualization will be introduced separately.