Documentation ¶
Overview ¶
Graph representation of service units Uses more efficient data structure, Adjacency List, compared to graphml package that uses list of nodes and edges.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Graph ¶
type Graph struct { Nodes map[string]*Node // Node ID -> Node Adjacency map[string][]string // Node ID -> List of neighbors }
func (*Graph) CalculateRecursiveCalls ¶
Wrapper function to calculate recursive calls for all nodes
Click to show internal directories.
Click to hide internal directories.